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
Defines the custom footer content for the ColumnChooser.
Declaration
public RenderFragment<object> FooterTemplate { get; set; }
Property Value
Type |
---|
Microsoft.AspNetCore.Components.RenderFragment<System.Object> |
Remarks
The parameters passed to the templates can be accessed using implicit parameter named context
.
The context is of type TValue of the grid.
Operator
Defines the search operator for Column Chooser.
Declaration
public Operator Operator { get; set; }
Property Value
Type |
---|
Operator |
Template
Defines the custom content for the ColumnChooser.
Declaration
public RenderFragment<object> Template { get; set; }
Property Value
Type |
---|
Microsoft.AspNetCore.Components.RenderFragment<System.Object> |
Remarks
The parameters passed to the templates can be accessed using implicit parameter named context
.
The context is of type TValue of the 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. |