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