ClassDataGridTypedFilterControl
Definition
Namespace:Telerik.Maui.Controls.DataGrid
Assembly:Telerik.Maui.Controls.dll
Syntax:
public abstract class DataGridTypedFilterControl : DataGridFilterControlBase, IRadContentView, IContentView, IView, IElement, ITransform, IPadding, ICrossPlatformLayout
Inheritance: objectRadContentViewDataGridFilterControlBaseDataGridTypedFilterControl
Derived Classes:
Implements:
Inherited Members
Constructors
DataGridTypedFilterControl()
Initializes a new instance of the DataGridTypedFilterControl class.
Declaration
public DataGridTypedFilterControl()
Fields
DescriptorOperatorsProperty
Identifies the DescriptorOperators bindable property.
Declaration
public static readonly BindableProperty DescriptorOperatorsProperty
Field Value
BindableProperty
FirstDescriptorOperatorProperty
Identifies the FirstDescriptorOperator bindable property.
Declaration
public static readonly BindableProperty FirstDescriptorOperatorProperty
Field Value
BindableProperty
FirstDescriptorValueProperty
Identifies the FirstDescriptorValue bindable property.
Declaration
public static readonly BindableProperty FirstDescriptorValueProperty
Field Value
BindableProperty
LogicalOperatorIndexProperty
Identifies the LogicalOperatorIndex bindable property.
Declaration
public static readonly BindableProperty LogicalOperatorIndexProperty
Field Value
BindableProperty
LogicalOperatorProperty
Identifies the LogicalOperator bindable property.
Declaration
public static readonly BindableProperty LogicalOperatorProperty
Field Value
BindableProperty
LogicalOperatorsProperty
Identifies the LogicalOperators bindable property.
Declaration
public static readonly BindableProperty LogicalOperatorsProperty
Field Value
BindableProperty
SecondDescriptorOperatorProperty
Identifies the SecondDescriptorOperator bindable property.
Declaration
public static readonly BindableProperty SecondDescriptorOperatorProperty
Field Value
BindableProperty
SecondDescriptorValueProperty
Identifies the SecondDescriptorValue bindable property.
Declaration
public static readonly BindableProperty SecondDescriptorValueProperty
Field Value
BindableProperty
Properties
DescriptorOperators
Gets or sets the list of available descriptor operators.
FirstDescriptorOperator
Gets or sets the operator for the first filter descriptor.
Declaration
public string FirstDescriptorOperator { get; set; }
Property Value
FirstDescriptorValue
Gets or sets the value for the first filter descriptor.
Declaration
public object FirstDescriptorValue { get; set; }
Property Value
LogicalOperator
Gets or sets the logical operator used to combine filter descriptors.
LogicalOperatorIndex
Gets or sets the index of the logical operator in the LogicalOperators list.
LogicalOperators
Gets or sets the list of available logical operators.
SecondDescriptorOperator
Gets or sets the operator for the second filter descriptor.
Declaration
public string SecondDescriptorOperator { get; set; }
Property Value
SecondDescriptorValue
Gets or sets the value for the second filter descriptor.
Declaration
public object SecondDescriptorValue { get; set; }
Property Value
Methods
BuildDescriptor()
Builds and returns a FilterDescriptorBase based on the current filter settings.
Declaration
public override FilterDescriptorBase BuildDescriptor()
Returns
A FilterDescriptorBase representing the filter configuration.
Overrides
GetOperators()
Gets the available operators for the filter control.
Declaration
protected virtual IEnumerable<string> GetOperators()
Returns
A collection of available operators.
Initialize()
Initializes the filter control with default values and settings.
Declaration
protected override void Initialize()
Overrides