Class GridSortSettings
Inheritance
System.Object
GridSortSettings
Assembly: Syncfusion.Blazor.dll
Syntax
public class GridSortSettings : SfDataBoundComponent
Constructors
GridSortSettings()
Declaration
public GridSortSettings()
Properties
AllowUnsort
If AllowUnsort set to false the user can not get the grid in unsorted state by clicking the sorted column header.
Declaration
public bool AllowUnsort { get; set; }
Property Value
Columns
Specifies the columns to sort at initial rendering of Grid.
Also user can get current sorted columns, use GridSortColumn component
to set initial sort columns.
Declaration
public List<GridSortColumn> Columns { get; set; }
Property Value
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Type |
Name |
Description |
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder |
__builder |
|
OnInitializedAsync()
Declaration
protected override Task OnInitializedAsync()
Returns
Type |
System.Threading.Tasks.Task |
Overrides
Declaration
protected override Task OnParametersSetAsync()
Returns
Type |
System.Threading.Tasks.Task |
Overrides
UpdateChildProperties(String, List<GridSortColumn>)
Declaration
public void UpdateChildProperties(string key, List<GridSortColumn> value)
Parameters
Type |
Name |
Description |
System.String |
key |
|
System.Collections.Generic.List<GridSortColumn> |
value |
|