Class GridFilterColumn
Configures grid filter column.
Inheritance
System.Object
GridFilterColumn
Assembly: Syncfusion.Blazor.dll
Syntax
public class GridFilterColumn : SfDataBoundComponent
Constructors
GridFilterColumn()
Declaration
public GridFilterColumn()
Properties
ActualValue
Defines the Actual value used to filter records.
Declaration
public object ActualValue { get; set; }
Property Value
Type |
Description |
System.Object |
|
Field
Defines the field name of the filter column.
Declaration
public string Field { get; set; }
Property Value
Type |
Description |
System.String |
|
MatchCase
If match case set to true, then filter records with exact match or else
filter records with case insensitive(uppercase and lowercase letters treated as same).
Declaration
public bool MatchCase { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Operator
Defines the operator to filter records.
Declaration
public Operator Operator { get; set; }
Property Value
Predicate
Defines the relationship between one filter query and another by using AND or OR predicate.
Declaration
public string Predicate { get; set; }
Property Value
Type |
Description |
System.String |
|
Uid
Defines the UID of filter column.
Declaration
public string Uid { get; set; }
Property Value
Type |
Description |
System.String |
|
Value
Defines the value used to filter records.
Declaration
public object Value { get; set; }
Property Value
Type |
Description |
System.Object |
|
Methods
OnInitializedAsync()
Declaration
protected override Task OnInitializedAsync()
Returns
Type |
Description |
System.Threading.Tasks.Task |
|
Overrides
OnParametersSetAsync()
Declaration
protected override Task OnParametersSetAsync()
Returns
Type |
Description |
System.Threading.Tasks.Task |
|
Overrides