Class TreeGridFilterColumn
Configures Tree Grid filter column.
Inheritance
Namespace: Syncfusion.Blazor.TreeGrid
Assembly: Syncfusion.Blazor.dll
Syntax
public class TreeGridFilterColumn : OwningComponentBase
Constructors
TreeGridFilterColumn()
Declaration
public TreeGridFilterColumn()
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 |
IgnoreAccent
If IgnoreAccent is set to true, then filter ignores the diacritic characters or accents while filtering.
Declaration
public bool IgnoreAccent { get; set; }
Property Value
Type |
---|
System.Boolean |
MatchCase
If MatchCase 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 |
Value
Defines the value used to filter records.
Declaration
public object Value { get; set; }
Property Value
Type |
---|
System.Object |
Methods
OnInitializedAsync()
Method invoked when the component is ready to start, having received its initial parameters from its parent in the render tree. Override this method if you will perform an asynchronous operation and want the component to refresh when that operation is completed.
Declaration
protected override Task OnInitializedAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing any asynchronous operation. |
OnParametersSetAsync()
Method invoked when the component has received parameters from its parent in the render tree, and the incoming values have been assigned to properties.
Declaration
protected override Task OnParametersSetAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing any asynchronous operation. |