Class TreeGridColumnChooserSettings
Configures Tree Grid column chooser settings.
Inheritance
Namespace: Syncfusion.Blazor.TreeGrid
Assembly: Syncfusion.Blazor.dll
Syntax
public class TreeGridColumnChooserSettings : OwningComponentBase
Constructors
TreeGridColumnChooserSettings()
Declaration
public TreeGridColumnChooserSettings()
Properties
FooterTemplate
Gets or sets the custom footer content for the ColumnChooser.
Declaration
public RenderFragment<object> FooterTemplate { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.RenderFragment<System.Object> | A Microsoft.AspNetCore.Components.RenderFragment<> representing the footer template content. |
Remarks
The parameters passed to the templates can be accessed using an implicit parameter named context
.
The context is of type TValue of the grid.
Operator
Gets or sets the search operator for Column Chooser.
Declaration
public Operator Operator { get; set; }
Property Value
Type | Description |
---|---|
Operator | One of the Operator enumeration values that specifies the search operator. The default is Operator.StartsWith. |
Template
Gets or sets the custom content for the ColumnChooser.
Declaration
public RenderFragment<object> Template { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.RenderFragment<System.Object> | A Microsoft.AspNetCore.Components.RenderFragment<> representing the template for custom content. |
Remarks
The parameters passed to the templates can be accessed using an implicit parameter named context
.
The context is of type TValue of the tree grid.
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. |