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
Gets or sets the actual value used to filter records.
Declaration
public object ActualValue { get; set; }
Property Value
Type | Description |
---|---|
System.Object | A value of any data type used for filtering. |
Field
Gets or sets the field name of the filter column.
Declaration
public string Field { get; set; }
Property Value
Type | Description |
---|---|
System.String | A System.String representing the field name to filter. The default is an empty string. |
IgnoreAccent
Gets or sets a value indicating whether the filter ignores diacritic characters or accents.
Declaration
public bool IgnoreAccent { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the filter ignores accents; otherwise, false. |
MatchCase
Gets or sets a value indicating whether the filter records with exact match case sensitivity.
Declaration
public bool MatchCase { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if matching case sensitivity is considered; otherwise, false. |
Operator
Gets or sets the operator to filter records.
Declaration
public Operator Operator { get; set; }
Property Value
Predicate
Gets or sets the relationship between one filter query and another using logical operators such as AND or OR.
Declaration
public string Predicate { get; set; }
Property Value
Type | Description |
---|---|
System.String | A System.String representing the predicate logic. |
Value
Gets or sets the value used to filter records.
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object | A value of any data type used for filtering. |
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. |