TreeListColumnCommandBuilder
Methods
ClassName(System.String)
The CSS class that is applied to the command button.
Parameters
value - System.String
The value for ClassName
RETURNS
Returns the current TreeListColumnCommandBuilder instance.
Icon(System.String)
Specifies the icon's name of the command button.
Parameters
value - System.String
The value for Icon
RETURNS
Returns the current TreeListColumnCommandBuilder instance.
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
RETURNS
Returns the current TreeListColumnCommandBuilder instance.
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.
RETURNS
Returns the current TreeListColumnCommandBuilder instance.
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.
RETURNS
Returns the current TreeListColumnCommandBuilder instance.
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
RETURNS
Returns the current TreeListColumnCommandBuilder instance.
Text(System.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.
Parameters
value - System.String
The value for Text
RETURNS
Returns the current TreeListColumnCommandBuilder instance.