Update index.d.ts (kendo-ui toolbar)

For the grid, a toolbar can be either a string, a function, or an array of either string or GridToolBarItems. Some standard toolbar items are pre-defined as strings (i.e. "Create", "Delete").
This commit is contained in:
Shawn Clabough
2018-05-30 11:38:58 -07:00
committed by GitHub
parent 21c6ad0a19
commit cd87bfabe8

View File

@@ -4311,7 +4311,7 @@ declare namespace kendo.ui {
scrollable?: boolean | GridScrollable;
selectable?: boolean|string;
sortable?: boolean | GridSortable;
toolbar?: GridToolbarItem[];
toolbar?: string|Function|(string|GridToolbarItem)[];
beforeEdit?(e: GridBeforeEditEvent): void;
cancel?(e: GridCancelEvent): void;
cellClose?(e: GridCellCloseEvent): void;