Learn what Felgo offers to help your business succeed. Start your free evaluation today! Felgo for Your Business

AnyOf

Filter container accepting rows accepted by at least one of its child filters. More...

Import Statement: import Felgo 4.0
Since: Felgo 2.18.1
Inherits:

Filter

Properties

Detailed Description

The AnyOf type is a Filter container that accepts rows if any of its contained (and enabled) filters accept them.

In the following example, only rows with their firstName or lastName role beginning with the content of the nameTextField will be accepted:

 TextField {
   id: nameTextField
 }

 SortFilterProxyModel {
   sourceModel: contactModel
   filters: AnyOf {
       RegExpFilter {
           roleName: "lastName"
           pattern: nameTextField.text
           caseSensitivity: Qt.CaseInsensitive
       }
       RegExpFilter {
           roleName: "firstName"
           pattern: nameTextField.text
           caseSensitivity: Qt.CaseInsensitive
       }
   }
 }

See also FilterContainer.

Property Documentation

enabled : bool

This property holds whether the filter is enabled. A disabled filter will accept every rows unconditionally (even if it's inverted).

By default, filters are enabled.


inverted : bool

This property holds whether the filter is inverted. When a filter is inverted, a row normally accepted would be rejected, and vice-versa.

By default, filters are not inverted.


Qt_Technology_Partner_RGB_475 Qt_Service_Partner_RGB_475_padded