Enum CommandButtonType
Defines the Command Buttons 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.
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum CommandButtonType
Fields
| Name | Description |
|---|---|
| Cancel | A cancel command button that cancels the edit state. |
| Delete | A delete command button that delete current record. |
| Edit | A edit command button that edit current record. |
| None | Default. A command button with no default action. Use this for custom command actions. |
| Save | A save command button that saves the current edited record. |