- Default Toolbar Items
- Custom Toolbar Items
Contact Support
Toolbar
4 Sep 20184 minutes to read
In TreeGrid we can show/hide the Toolbar by using toolbarSettings.showToolbar
property.We can add default toolbar items by toolbarSettings.toolbarItems
. User can also create a custom toolbar items by using toolbarSettings.customToolbarItems
.
Default Toolbar Items
Using TreeGrid default toolbar items we can perform below operations.
-
Add- To add new task.
-
Edit-To edit a selected task.
-
Delete- To delete a selected task.
-
Cancel- To cancel the edited changes in a task.
-
Update- To save the edited changes in a task.
-
ExpandAll- To expand all the TreeGrid rows.
-
CollapseAll- To collapse all the TreeGrid rows.
-
PdfExport- To export TreeGrid in PDF format.
-
ExcelExport- To export TreeGrid in Excel format.
We can enable TreeGrid toolbar by using below code example:
<ej-tree-grid id="TreeGridControlEditing"
//...>
<e-tree-grid-toolbar-settings show-toolbar="true" toolbar-items="@(new List<string>() { "add","edit","delete","update","cancel","indent","outdent","expandAll","collapseAll","search" })">
</e-tree-grid-toolbar-settings>
</ej-tree-grid>
The following screenshot displays the toolbar option in TreeGrid control.
NOTE
To perform add,edit,delete,cancel,update using Toolbar items we need to enable add/edit/delete using
editSettings
.
Custom Toolbar Items
CustomToolbarItems allows us to insert custom icons and custom template in TreeGrid toolbar. By using below properties we can customize TreeGrid toolbar as per our requirement.
-
text- To insert the custom icons in toolbar using CSS class name selector.
-
templateID-To insert the custom icons in toolbar using script templates. Using this property we can bind HTML elements and other EJ controls to TreeGrid toolbar.
-
tooltipText-Displays tooltip text for the custom icons.
To insert EJ Controls in TreeGrid toolbar we need to initiate the control in create
client side event.In toolbarClick
client side event we can bind actions to the custom toolbar items.
<ej-tree-grid id="ToolbarTemplate" toolbar-click="toolbarClick" create="create">
<e-tree-grid-toolbar-settings show-toolbar="true">
<e-tree-grid-custom-toolbar-items>
<e-tree-grid-custom-toolbar-item template-id="#ColumnVisibility" tooltip-text="Column Visibility" />
<e-tree-grid-custom-toolbar-item text="Reset" tooltip-text="Reset" />
</e-tree-grid-custom-toolbar-items>
</e-tree-grid-toolbar-settings>
</ej-tree-grid>
<script id="ColumnVisibility" type="text/x-jsrender">
<input id="dropdownContainer" />
</script>
<script type="text/javascript">
function toolbarClick(args) {
if (args.itemName == "Reset") {
//we can bind the custom actions here
}
}
//Here we can append custom EJ controls
function create(args) {
$("#dropdownContainer").ejDropDownList({
});
}
</script>
<style type="text/css" class="cssStyles">
#ToolbarTemplate_ColumnVisibility {
padding-top: 2px;
padding-bottom: 0px;
}
.Reset:before {
content: "\e677";
}
</style>