Class GridColumnChooserSettings
Configures grid column chooser settings.
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class GridColumnChooserSettings : SfDataBoundComponent
Constructors
GridColumnChooserSettings()
Declaration
public GridColumnChooserSettings()
Properties
FooterTemplate
Defines the custom footer content for the column chooser.This can be used to introduce own UI inside the column chooser dialog footer content.
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 ColumnChooserFooterTemplateContext of the grid.
Operator
Defines the search operator for Column Chooser. By default search operator is Operator.
Declaration
public Operator Operator { get; set; }
Property Value
Type |
---|
Operator |
Template
Defines the custom content for the column chooser dialog. This can be used to introduce own UI inside the column chooser dialog content. The checkboxes can be rendered using GridColumnChooserItem component.
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 ColumnChooserTemplateContext of the grid.
Methods
OnInitializedAsync()
Declaration
protected override Task OnInitializedAsync()
Returns
Type |
---|
System.Threading.Tasks.Task |
Overrides
OnParametersSetAsync()
Declaration
protected override Task OnParametersSetAsync()
Returns
Type |
---|
System.Threading.Tasks.Task |