Class GridFilterColumn
Configures grid filter column.
Inheritance
System.Object
GridFilterColumn
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class GridFilterColumn : OwningComponentBase
Constructors
GridFilterColumn()
Declaration
public GridFilterColumn()
Properties
ActualValue
Defines the Actual value used to filter records.
Declaration
public object ActualValue { get; set; }
Property Value
Type |
---|
System.Object |
Field
Defines the field name of the filter column.
Declaration
public string Field { get; set; }
Property Value
Type |
---|
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 |
---|
System.Boolean |
Operator
Defines the operator to filter records.
Declaration
public Operator Operator { get; set; }
Property Value
Type |
---|
Operator |
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 |
---|
System.String |
Uid
Defines the UID of filter column.
Declaration
public string Uid { get; set; }
Property Value
Type |
---|
System.String |
Value
Defines the value used to filter records.
Declaration
public object Value { get; set; }
Property Value
Type |
---|
System.Object |
Methods
OnInitializedAsync()
Declaration
protected override Task OnInitializedAsync()
Returns
Type |
---|
System.Threading.Tasks.Task |
OnParametersSetAsync()
Declaration
protected override Task OnParametersSetAsync()
Returns
Type |
---|
System.Threading.Tasks.Task |