enables a disabled item(s) of Toolbar
ids | string|array | one ID or an array of IDs of items |
toolbar.enable("save_btn");
// several at a time
toolbar.enable(["cancel_btn","del_btn"]);
Starting from v7.0, it is possible to enable all items at once by using the method without the parameter:
// enables all Toolbar items
toolbar.enable();