TreeListColumnCommandTagHelper
Example
Razor
<treelist-column-command>
</treelist-column-command>
Attributes
Attribute | Type | Description |
---|---|---|
name | String | The name of the command. Commands can be built-in ("edit", "createChild" and "destroy") or custom. When set to a custom value, the name is rendered as a data-command attribute. For more information, refer to the columns.command section. |
class-name | String | The CSS class that is applied to the command button. |
click | String | The JavaScript function that is executed when the user clicks the command button. The function receives a jQuery event as an argument. The function context that is available through the this keyword will be set to the TreeList instance. |
icon | String | Specifies the icon's name of the command button. |
image-class | String | The CSS class that is applied to the icon span of the command button. |
text | String | The text that is displayed by the command button. If not set, the name option is used as the button text. To have an icon button with no text, you can set the text property to an empty string. |