Class GridCommandColumn
Configures grid command column.
Inheritance
GridCommandColumn
Assembly: Syncfusion.Blazor.dll
Syntax
public class GridCommandColumn : SfOwningComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Constructors
GridCommandColumn()
Declaration
public GridCommandColumn()
Properties
Declaration
[Parameter]
public CommandButtonOptions ButtonOption { get; set; }
Property Value
ID
Define the command button ID.
Declaration
[Parameter]
public string ID { get; set; }
Property Value
Title
Define the command button tooltip.
Declaration
[Parameter]
public string Title { get; set; }
Property Value
Type
Define the command button type.
- NoneDefault. A command button with no default action. Use this for custom command actions.
- EditA edit command button that edit current record.
- DeleteA delete command button that delete current record.
- SaveA save command button that saves the current edited record.
- CancelA cancel command button that cancels the edit state.
Declaration
[Parameter]
public CommandButtonType Type { get; set; }
Property Value
Remarks
Uid
Declaration
[Parameter]
public string Uid { get; set; }
Property Value
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Overrides
OnInitializedAsync()
Declaration
protected override Task OnInitializedAsync()
Returns
Overrides
OnParametersSetAsync()
Declaration
protected override Task OnParametersSetAsync()
Returns
Overrides
Implements