show
Shows a hidden command in the ToolBar widget. The command is shown in the ToolBar container and overflow popup (if resizable is enabled).
Parameters
command String|Element|jQuery
A string, DOM element or jQuery object which represents the command to be shown. A string is treated as jQuery selector.
Example - show button from the ToolBar
<div id="toolbar"></div>
<script>
$("#toolbar").kendoToolBar({
items: [
{ type: "button", id: "btn1", text: "Button 1" },
{ type: "button", id: "btn2", text: "Button 2", hidden: true }
]
});
var toolbar = $("#toolbar").data("kendoToolBar");
toolbar.show($("#btn2"));
</script>