Class ColumnChooserFooterTemplateContext
Defines members of the ColumnChooser FooterTemplate context.
Inheritance
System.Object
ColumnChooserFooterTemplateContext
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class ColumnChooserFooterTemplateContext : Object
Constructors
ColumnChooserFooterTemplateContext()
Declaration
public ColumnChooserFooterTemplateContext()
Properties
CancelAsync
Gets a function that cancels the column chooser operation and closes the dialog.
Declaration
public Func<Task> CancelAsync { get; }
Property Value
Type | Description |
---|---|
System.Func<System.Threading.Tasks.Task> | A System.Func<> that returns a System.Threading.Tasks.Task representing the async operation. |
Columns
Gets the list of columns from the data source.
Declaration
public List<GridColumn> Columns { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<GridColumn> | A System.Collections.Generic.List<> of GridColumn objects representing the columns in the data source. |
Remarks
This property returns a list of columns used by the data source. If no search criteria have been applied, the list will include all columns in the data source. If search criteria have been applied, only columns that match the criteria will be returned.