TreeListColumnCommandBuilder
Defines the fluent API for configuring TreeListColumnCommand
Methods
ClassName(System.String)
The CSS class that is applied to the command button.
Parameters
value - System.String
The value for ClassName
ImageClass(System.String)
The CSS class that is applied to the icon span of the command button.
Parameters
value - System.String
The value for ImageClass
Click(System.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.
Parameters
handler - System.String
The name of the JavaScript function that will be evaluated.
Click(System.Func)
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.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Name(System.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.
Parameters
value - System.String
The value for Name
Text(System.String)
The text that is displayed by the command button. If not set, the name option is used as the button text.
Parameters
value - System.String
The value for Text