{hidden}
DO NOT EDIT THE CONTENT OF THIS PAGE DIRECTLY, UNLESS YOU KNOW WHAT YOU'RE DOING.
		THE STRUCTURE OF THE CONTENT IS VITAL IN BEING ABLE TO EXTRACT CHANGES FROM THE PAGE AND MERGE THEM BACK INTO SERVOY SOURCE{hidden}
{sub-section:description|text=}{sub-section}\\{table:class=servoy sSummery}{colgroup}{column:width=80px}{column}{column}{column}{colgroup}{tr:style=height: 30px;}{th:colspan=2}Method Summary{th}{tr}{tbody}{tr}{td}void{td}{td}[#addButton]\(text, method, arguments, icon, tooltip, enabled, visible)
Add a Button to the toolbar.{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#addCheckBox]\(text, method, selected, tooltip, enabled, visible)
Add a CheckBox to the toolbar.{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#addComboBox]\(method, index, input, tooltip, enabled, visible)
Add a ComboBox to the toolbar.{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#addField]\(method, text, tooltip, enabled, visible)
Add a Field to the toolbar.{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#addSeparator]\()
Add a Separator to the toolbar.{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#enableItem]\()
{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#removeAllItems]\()
Remove all Buttons, Checkboxes etc.{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#removeItem]\(index)
Remove a Button, CheckBox, ComboBox from the toolbar.{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#selectCheckBox]\(index, boolean)
Set the CheckBox selection.{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#selectComboBox]\(index, rowindex)
Select a row of the ComboBox via the index.{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#setFieldText]\(index, text)
Set a (default) text of the field at the given index.{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#validate]\()
You need to call this method after adding or removing items to/from the toolbar.{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#visibleItem]\()
{td}{tr}{tbody}{table}\\{table:class=servoy sDetail}{colgroup}{column:width=100%}{column}{colgroup}{tr:style=height: 30px;}{th:colspan=1}Method Details{th}{tr}{tbody:id=1E9F8A9B-E72F-4350-B7D7-43163F5F1DA4}{tr:id=name}{td}h6.addButton{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}void{span}{span:id=iets|style=float: left; font-weight: bold;}addButton{span}{span:id=iets|style=float: left;}\(text, method, arguments, icon, tooltip, enabled, visible){span}{td}{tr}{tr:id=des}{td}{sub-section:1E9F8A9B-E72F-4350-B7D7-43163F5F1DA4_des|text=|trigger=button}{sub-section}{sub-section:1E9F8A9B-E72F-4350-B7D7-43163F5F1DA4_des|trigger=none|class=sIndent}Add a Button to the toolbar.{sub-section}{td}{tr}{tr:id=prs}{td}*Parameters*\\{sub-section:1E9F8A9B-E72F-4350-B7D7-43163F5F1DA4_prs|text=|trigger=button}{sub-section}{div:class=sIndent}{sub-section:1E9F8A9B-E72F-4350-B7D7-43163F5F1DA4_prs|trigger=none}text
method
\[arguments\]
\[icon\]
\[tooltip\]
\[enabled\]
\[visible\]
{sub-section}{div}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:1E9F8A9B-E72F-4350-B7D7-43163F5F1DA4_ret|text=|trigger=button}{sub-section}{sub-section:1E9F8A9B-E72F-4350-B7D7-43163F5F1DA4_ret|trigger=none|class=sIndent}void{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:1E9F8A9B-E72F-4350-B7D7-43163F5F1DA4_see|text=|trigger=button}{sub-section}{sub-section:1E9F8A9B-E72F-4350-B7D7-43163F5F1DA4_see|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:1E9F8A9B-E72F-4350-B7D7-43163F5F1DA4_see|text=|trigger=button}{sub-section}{sub-section:1E9F8A9B-E72F-4350-B7D7-43163F5F1DA4_link|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:1E9F8A9B-E72F-4350-B7D7-43163F5F1DA4_sam|text=|trigger=button}{sub-section}{sub-section:1E9F8A9B-E72F-4350-B7D7-43163F5F1DA4_sam|class=sIndent|trigger=none}{code:language=javascript}
// get the toolbar at the panel by name
var toolbar = plugins.menubar.getToolBar("toolbar_0");

// add a button with a text and a method
toolbar.addButton("button", feedback_button);

// add an input array to the button for feedback in the selected method
toolbar.addButton("button", feedback_button, [1, "2", "three"]);

// add an icon to the button
toolbar.addButton("button", feedback_button, [1, "2", "three"], "media:///yourimage.gif");

// add a tooltip to the button
toolbar.addButton("button", feedback_button, [1, "2", "three"], "media:///yourimage.gif", "tooltip...");

// show only an icon on the button and disable the button
toolbar.addButton(null, feedback_button, [1, "2", "three"], "media:///yourimage.gif", "tooltip...", false);

// add a separator
toolbar.addSeparator();

// make the button non visible
toolbar.addButton(null, feedback_button, [1, "2", "three"], "media:///yourimage.gif", "tooltip...",true, false);

// and validate the changes
// to make them know to the user interface)
toolbar.validate();
{code}{sub-section}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=F509C0EB-0AFD-4AB4-AC92-6C5D69817A4C}{tr:id=name}{td}h6.addCheckBox{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}void{span}{span:id=iets|style=float: left; font-weight: bold;}addCheckBox{span}{span:id=iets|style=float: left;}\(text, method, selected, tooltip, enabled, visible){span}{td}{tr}{tr:id=des}{td}{sub-section:F509C0EB-0AFD-4AB4-AC92-6C5D69817A4C_des|text=|trigger=button}{sub-section}{sub-section:F509C0EB-0AFD-4AB4-AC92-6C5D69817A4C_des|trigger=none|class=sIndent}Add a CheckBox to the toolbar.{sub-section}{td}{tr}{tr:id=prs}{td}*Parameters*\\{sub-section:F509C0EB-0AFD-4AB4-AC92-6C5D69817A4C_prs|text=|trigger=button}{sub-section}{div:class=sIndent}{sub-section:F509C0EB-0AFD-4AB4-AC92-6C5D69817A4C_prs|trigger=none}text
method
\[selected\]
\[tooltip\]
\[enabled\]
\[visible\]
{sub-section}{div}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:F509C0EB-0AFD-4AB4-AC92-6C5D69817A4C_ret|text=|trigger=button}{sub-section}{sub-section:F509C0EB-0AFD-4AB4-AC92-6C5D69817A4C_ret|trigger=none|class=sIndent}void{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:F509C0EB-0AFD-4AB4-AC92-6C5D69817A4C_see|text=|trigger=button}{sub-section}{sub-section:F509C0EB-0AFD-4AB4-AC92-6C5D69817A4C_see|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:F509C0EB-0AFD-4AB4-AC92-6C5D69817A4C_see|text=|trigger=button}{sub-section}{sub-section:F509C0EB-0AFD-4AB4-AC92-6C5D69817A4C_link|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:F509C0EB-0AFD-4AB4-AC92-6C5D69817A4C_sam|text=|trigger=button}{sub-section}{sub-section:F509C0EB-0AFD-4AB4-AC92-6C5D69817A4C_sam|class=sIndent|trigger=none}{code:language=javascript}
// add a toolbar with a name and internal name
var toolbar = plugins.menubar.addToolBar("toolbar_1", "toolbar_1");

// add a checkbox with a text and a method
toolbar.addCheckBox("checkbox", feedback_button);

// add an checkbox and set it's state to selected (not selected by default)
toolbar.addCheckBox("checkbox", feedback_button, true);

// add a tooltip to the checkbox
toolbar.addCheckBox("checkbox", feedback_button, false, "tooltip");

// add a separator
toolbar.addSeparator();

// disable the checkbox and select it
toolbar.addCheckBox("checkbox", feedback_button, true, "tooltip",false);

// make the button non visible
toolbar.addCheckBox("checkbox", feedback_button, false, "tooltip",false, false);

// and validate the changes
// to make them know to the user interface)
toolbar.validate();
{code}{sub-section}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=B4CB66AA-9A9D-4B5B-AAF7-8D363063E903}{tr:id=name}{td}h6.addComboBox{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}void{span}{span:id=iets|style=float: left; font-weight: bold;}addComboBox{span}{span:id=iets|style=float: left;}\(method, index, input, tooltip, enabled, visible){span}{td}{tr}{tr:id=des}{td}{sub-section:B4CB66AA-9A9D-4B5B-AAF7-8D363063E903_des|text=|trigger=button}{sub-section}{sub-section:B4CB66AA-9A9D-4B5B-AAF7-8D363063E903_des|trigger=none|class=sIndent}Add a ComboBox to the toolbar.{sub-section}{td}{tr}{tr:id=prs}{td}*Parameters*\\{sub-section:B4CB66AA-9A9D-4B5B-AAF7-8D363063E903_prs|text=|trigger=button}{sub-section}{div:class=sIndent}{sub-section:B4CB66AA-9A9D-4B5B-AAF7-8D363063E903_prs|trigger=none}method
index
input
\[tooltip\]
\[enabled\]
\[visible\]
{sub-section}{div}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:B4CB66AA-9A9D-4B5B-AAF7-8D363063E903_ret|text=|trigger=button}{sub-section}{sub-section:B4CB66AA-9A9D-4B5B-AAF7-8D363063E903_ret|trigger=none|class=sIndent}void{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:B4CB66AA-9A9D-4B5B-AAF7-8D363063E903_see|text=|trigger=button}{sub-section}{sub-section:B4CB66AA-9A9D-4B5B-AAF7-8D363063E903_see|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:B4CB66AA-9A9D-4B5B-AAF7-8D363063E903_see|text=|trigger=button}{sub-section}{sub-section:B4CB66AA-9A9D-4B5B-AAF7-8D363063E903_link|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:B4CB66AA-9A9D-4B5B-AAF7-8D363063E903_sam|text=|trigger=button}{sub-section}{sub-section:B4CB66AA-9A9D-4B5B-AAF7-8D363063E903_sam|class=sIndent|trigger=none}{code:language=javascript}
// add a toolbar with a name and internal name at the given row index
var toolbar = plugins.menubar.addToolBar("toolbar_2", "toolbar_2", 3);

// add a combobox with the attached method, selected index and input (list) array
toolbar.addComboBox(feedback_button, 0, ["input","array","combobox",1]);

// add a tooltip to the combobox
toolbar.addComboBox(feedback_button, 1, ["input","array","combobox",2], "tooltip");

// add a separator
toolbar.addSeparator();

// disable the combobox
toolbar.addComboBox(feedback_button, 2, ["input","array","combobox",3], "tooltip",false);

// make the combobox non visible
toolbar.addComboBox(feedback_button, 3, ["input","array","combobox",4], "tooltip",false, false);

// and validate the changes
// to make them know to the user interface)
toolbar.validate();
{code}{sub-section}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=F64B89A9-190A-4DB5-85D7-AA3FD31EDDD7}{tr:id=name}{td}h6.addField{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}void{span}{span:id=iets|style=float: left; font-weight: bold;}addField{span}{span:id=iets|style=float: left;}\(method, text, tooltip, enabled, visible){span}{td}{tr}{tr:id=des}{td}{sub-section:F64B89A9-190A-4DB5-85D7-AA3FD31EDDD7_des|text=|trigger=button}{sub-section}{sub-section:F64B89A9-190A-4DB5-85D7-AA3FD31EDDD7_des|trigger=none|class=sIndent}Add a Field to the toolbar.{sub-section}{td}{tr}{tr:id=prs}{td}*Parameters*\\{sub-section:F64B89A9-190A-4DB5-85D7-AA3FD31EDDD7_prs|text=|trigger=button}{sub-section}{div:class=sIndent}{sub-section:F64B89A9-190A-4DB5-85D7-AA3FD31EDDD7_prs|trigger=none}method
text
\[tooltip\]
\[enabled\]
\[visible\]
{sub-section}{div}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:F64B89A9-190A-4DB5-85D7-AA3FD31EDDD7_ret|text=|trigger=button}{sub-section}{sub-section:F64B89A9-190A-4DB5-85D7-AA3FD31EDDD7_ret|trigger=none|class=sIndent}void{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:F64B89A9-190A-4DB5-85D7-AA3FD31EDDD7_see|text=|trigger=button}{sub-section}{sub-section:F64B89A9-190A-4DB5-85D7-AA3FD31EDDD7_see|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:F64B89A9-190A-4DB5-85D7-AA3FD31EDDD7_see|text=|trigger=button}{sub-section}{sub-section:F64B89A9-190A-4DB5-85D7-AA3FD31EDDD7_link|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:F64B89A9-190A-4DB5-85D7-AA3FD31EDDD7_sam|text=|trigger=button}{sub-section}{sub-section:F64B89A9-190A-4DB5-85D7-AA3FD31EDDD7_sam|class=sIndent|trigger=none}{code:language=javascript}
// add a toolbar with a name and internal name at the given row index
var toolbar = plugins.menubar.addToolBar("toolbar_3", "toolbar_3", 4);

// add a field with the attached method and a default text
toolbar.addField(feedback_button, null);

// add a separator
toolbar.addSeparator();

// set the length of the field. 
// default length = 8 when length is not set or set to 0
toolbar.addField(feedback_button, "field", 0, "tooltip");

// add a separator
toolbar.addSeparator();

// add a tooltip to the field
toolbar.addField(feedback_button, "field", 10, "tooltip");

// add a separator
toolbar.addSeparator();

// disable the field
toolbar.addField(feedback_button, null, 5, "tooltip",false);

// add a separator
toolbar.addSeparator();

// make the field non visible
toolbar.addField(feedback_button, "field", 0, "tooltip",false, false);

// and validate the changes
// to make them know to the user interface)
toolbar.validate();
{code}{sub-section}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=9F959082-8BC5-4DD7-B707-F1D14B6616FC}{tr:id=name}{td}h6.addSeparator{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}void{span}{span:id=iets|style=float: left; font-weight: bold;}addSeparator{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{tr:id=des}{td}{sub-section:9F959082-8BC5-4DD7-B707-F1D14B6616FC_des|text=|trigger=button}{sub-section}{sub-section:9F959082-8BC5-4DD7-B707-F1D14B6616FC_des|trigger=none|class=sIndent}Add a Separator to the toolbar.{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:9F959082-8BC5-4DD7-B707-F1D14B6616FC_prs|text=|trigger=button}{sub-section}{div:class=sIndent}{sub-section:9F959082-8BC5-4DD7-B707-F1D14B6616FC_prs|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:9F959082-8BC5-4DD7-B707-F1D14B6616FC_ret|text=|trigger=button}{sub-section}{sub-section:9F959082-8BC5-4DD7-B707-F1D14B6616FC_ret|trigger=none|class=sIndent}void{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:9F959082-8BC5-4DD7-B707-F1D14B6616FC_see|text=|trigger=button}{sub-section}{sub-section:9F959082-8BC5-4DD7-B707-F1D14B6616FC_see|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:9F959082-8BC5-4DD7-B707-F1D14B6616FC_see|text=|trigger=button}{sub-section}{sub-section:9F959082-8BC5-4DD7-B707-F1D14B6616FC_link|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:9F959082-8BC5-4DD7-B707-F1D14B6616FC_sam|text=|trigger=button}{sub-section}{sub-section:9F959082-8BC5-4DD7-B707-F1D14B6616FC_sam|class=sIndent|trigger=none}{code:language=javascript}
// get the toolbar at the panel by name
var toolbar = plugins.menubar.getToolBar("toolbar_0");

// add a button with a text and a method
toolbar.addButton("button", feedback_button);

// add an input array to the button for feedback in the selected method
toolbar.addButton("button", feedback_button, [1, "2", "three"]);

// add an icon to the button
toolbar.addButton("button", feedback_button, [1, "2", "three"], "media:///yourimage.gif");

// add a tooltip to the button
toolbar.addButton("button", feedback_button, [1, "2", "three"], "media:///yourimage.gif", "tooltip...");

// show only an icon on the button and disable the button
toolbar.addButton(null, feedback_button, [1, "2", "three"], "media:///yourimage.gif", "tooltip...", false);

// add a separator
toolbar.addSeparator();

// make the button non visible
toolbar.addButton(null, feedback_button, [1, "2", "three"], "media:///yourimage.gif", "tooltip...",true, false);

// and validate the changes
// to make them know to the user interface)
toolbar.validate();
{code}{sub-section}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=76596F87-DDA5-4662-9A98-C9BF20F82B76}{tr:id=name}{td}h6.enableItem{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}void{span}{span:id=iets|style=float: left; font-weight: bold;}enableItem{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:76596F87-DDA5-4662-9A98-C9BF20F82B76_des|text=|trigger=button}{sub-section}{sub-section:76596F87-DDA5-4662-9A98-C9BF20F82B76_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:76596F87-DDA5-4662-9A98-C9BF20F82B76_prs|text=|trigger=button}{sub-section}{div:class=sIndent}{sub-section:76596F87-DDA5-4662-9A98-C9BF20F82B76_prs|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:76596F87-DDA5-4662-9A98-C9BF20F82B76_ret|text=|trigger=button}{sub-section}{sub-section:76596F87-DDA5-4662-9A98-C9BF20F82B76_ret|trigger=none|class=sIndent}void{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:76596F87-DDA5-4662-9A98-C9BF20F82B76_see|text=|trigger=button}{sub-section}{sub-section:76596F87-DDA5-4662-9A98-C9BF20F82B76_see|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:76596F87-DDA5-4662-9A98-C9BF20F82B76_see|text=|trigger=button}{sub-section}{sub-section:76596F87-DDA5-4662-9A98-C9BF20F82B76_link|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:76596F87-DDA5-4662-9A98-C9BF20F82B76_sam|text=|trigger=button}{sub-section}{sub-section:76596F87-DDA5-4662-9A98-C9BF20F82B76_sam|class=sIndent|trigger=none}{code:language=javascript}
// get the toolbar at the panel by name
var toolbar = plugins.menubar.getToolBar("toolbar_1");

// enable/disable the selected item at the index
// REMARK: the pitfall here is that the indexes start at position 1 here
// position 0 is reserved for the toolbar handle!
toolbar.enableItem(1, false);
{code}{sub-section}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=135A22A3-A7C3-4292-B5CA-03676819A20D}{tr:id=name}{td}h6.removeAllItems{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}void{span}{span:id=iets|style=float: left; font-weight: bold;}removeAllItems{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{tr:id=des}{td}{sub-section:135A22A3-A7C3-4292-B5CA-03676819A20D_des|text=|trigger=button}{sub-section}{sub-section:135A22A3-A7C3-4292-B5CA-03676819A20D_des|trigger=none|class=sIndent}Remove all Buttons, Checkboxes etc. from the toolbar.{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:135A22A3-A7C3-4292-B5CA-03676819A20D_prs|text=|trigger=button}{sub-section}{div:class=sIndent}{sub-section:135A22A3-A7C3-4292-B5CA-03676819A20D_prs|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:135A22A3-A7C3-4292-B5CA-03676819A20D_ret|text=|trigger=button}{sub-section}{sub-section:135A22A3-A7C3-4292-B5CA-03676819A20D_ret|trigger=none|class=sIndent}void{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:135A22A3-A7C3-4292-B5CA-03676819A20D_see|text=|trigger=button}{sub-section}{sub-section:135A22A3-A7C3-4292-B5CA-03676819A20D_see|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:135A22A3-A7C3-4292-B5CA-03676819A20D_see|text=|trigger=button}{sub-section}{sub-section:135A22A3-A7C3-4292-B5CA-03676819A20D_link|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:135A22A3-A7C3-4292-B5CA-03676819A20D_sam|text=|trigger=button}{sub-section}{sub-section:135A22A3-A7C3-4292-B5CA-03676819A20D_sam|class=sIndent|trigger=none}{code:language=javascript}
// get the toolbar at the panel by name
var toolbar = plugins.menubar.getToolBar("toolbar_0");

// remove all buttons from the toolbar
toolbar.removeAllItems();
{code}{sub-section}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=3EFF42A3-EEAB-4400-B185-DB3F17DC7C6F}{tr:id=name}{td}h6.removeItem{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}void{span}{span:id=iets|style=float: left; font-weight: bold;}removeItem{span}{span:id=iets|style=float: left;}\(index){span}{td}{tr}{tr:id=des}{td}{sub-section:3EFF42A3-EEAB-4400-B185-DB3F17DC7C6F_des|text=|trigger=button}{sub-section}{sub-section:3EFF42A3-EEAB-4400-B185-DB3F17DC7C6F_des|trigger=none|class=sIndent}Remove a Button, CheckBox, ComboBox from the toolbar.{sub-section}{td}{tr}{tr:id=prs}{td}*Parameters*\\{sub-section:3EFF42A3-EEAB-4400-B185-DB3F17DC7C6F_prs|text=|trigger=button}{sub-section}{div:class=sIndent}{sub-section:3EFF42A3-EEAB-4400-B185-DB3F17DC7C6F_prs|trigger=none}index
{sub-section}{div}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:3EFF42A3-EEAB-4400-B185-DB3F17DC7C6F_ret|text=|trigger=button}{sub-section}{sub-section:3EFF42A3-EEAB-4400-B185-DB3F17DC7C6F_ret|trigger=none|class=sIndent}void{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:3EFF42A3-EEAB-4400-B185-DB3F17DC7C6F_see|text=|trigger=button}{sub-section}{sub-section:3EFF42A3-EEAB-4400-B185-DB3F17DC7C6F_see|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:3EFF42A3-EEAB-4400-B185-DB3F17DC7C6F_see|text=|trigger=button}{sub-section}{sub-section:3EFF42A3-EEAB-4400-B185-DB3F17DC7C6F_link|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:3EFF42A3-EEAB-4400-B185-DB3F17DC7C6F_sam|text=|trigger=button}{sub-section}{sub-section:3EFF42A3-EEAB-4400-B185-DB3F17DC7C6F_sam|class=sIndent|trigger=none}{code:language=javascript}
// get the toolbar at the panel by name
var toolbar = plugins.menubar.getToolBar("toolbar_0");

// remove the button, checkbox, combobox, separator or field from the toolbar
// REMARK: the pitfall here is that the indexes start at position 1 here
// position 0 is reserved for the toolbar handle!
toolbar.removeItem(1);

// and validate the changes
// to make them know to the user interface)
toolbar.validate();
{code}{sub-section}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=AEEF7F46-543A-4E1D-AF8A-0F284FC76C85}{tr:id=name}{td}h6.selectCheckBox{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}void{span}{span:id=iets|style=float: left; font-weight: bold;}selectCheckBox{span}{span:id=iets|style=float: left;}\(index, boolean){span}{td}{tr}{tr:id=des}{td}{sub-section:AEEF7F46-543A-4E1D-AF8A-0F284FC76C85_des|text=|trigger=button}{sub-section}{sub-section:AEEF7F46-543A-4E1D-AF8A-0F284FC76C85_des|trigger=none|class=sIndent}Set the CheckBox selection.{sub-section}{td}{tr}{tr:id=prs}{td}*Parameters*\\{sub-section:AEEF7F46-543A-4E1D-AF8A-0F284FC76C85_prs|text=|trigger=button}{sub-section}{div:class=sIndent}{sub-section:AEEF7F46-543A-4E1D-AF8A-0F284FC76C85_prs|trigger=none}index
boolean
{sub-section}{div}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:AEEF7F46-543A-4E1D-AF8A-0F284FC76C85_ret|text=|trigger=button}{sub-section}{sub-section:AEEF7F46-543A-4E1D-AF8A-0F284FC76C85_ret|trigger=none|class=sIndent}void{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:AEEF7F46-543A-4E1D-AF8A-0F284FC76C85_see|text=|trigger=button}{sub-section}{sub-section:AEEF7F46-543A-4E1D-AF8A-0F284FC76C85_see|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:AEEF7F46-543A-4E1D-AF8A-0F284FC76C85_see|text=|trigger=button}{sub-section}{sub-section:AEEF7F46-543A-4E1D-AF8A-0F284FC76C85_link|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:AEEF7F46-543A-4E1D-AF8A-0F284FC76C85_sam|text=|trigger=button}{sub-section}{sub-section:AEEF7F46-543A-4E1D-AF8A-0F284FC76C85_sam|class=sIndent|trigger=none}{code:language=javascript}
// get the toolbar at the panel by name
var toolbar = plugins.menubar.getToolBar("toolbar_1");

// set the selection of the checkbox at the index
// REMARK: the pitfall here is that the indexes start at position 1 here
// position 0 is reserved for the toolbar handle!
toolbar.selectCheckBox(1, false);
toolbar.selectCheckBox(2, true);
{code}{sub-section}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=0E5516DD-6BE1-4633-902F-F390B2048517}{tr:id=name}{td}h6.selectComboBox{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}void{span}{span:id=iets|style=float: left; font-weight: bold;}selectComboBox{span}{span:id=iets|style=float: left;}\(index, rowindex){span}{td}{tr}{tr:id=des}{td}{sub-section:0E5516DD-6BE1-4633-902F-F390B2048517_des|text=|trigger=button}{sub-section}{sub-section:0E5516DD-6BE1-4633-902F-F390B2048517_des|trigger=none|class=sIndent}Select a row of the ComboBox via the index.{sub-section}{td}{tr}{tr:id=prs}{td}*Parameters*\\{sub-section:0E5516DD-6BE1-4633-902F-F390B2048517_prs|text=|trigger=button}{sub-section}{div:class=sIndent}{sub-section:0E5516DD-6BE1-4633-902F-F390B2048517_prs|trigger=none}index
rowindex
{sub-section}{div}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:0E5516DD-6BE1-4633-902F-F390B2048517_ret|text=|trigger=button}{sub-section}{sub-section:0E5516DD-6BE1-4633-902F-F390B2048517_ret|trigger=none|class=sIndent}void{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:0E5516DD-6BE1-4633-902F-F390B2048517_see|text=|trigger=button}{sub-section}{sub-section:0E5516DD-6BE1-4633-902F-F390B2048517_see|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:0E5516DD-6BE1-4633-902F-F390B2048517_see|text=|trigger=button}{sub-section}{sub-section:0E5516DD-6BE1-4633-902F-F390B2048517_link|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:0E5516DD-6BE1-4633-902F-F390B2048517_sam|text=|trigger=button}{sub-section}{sub-section:0E5516DD-6BE1-4633-902F-F390B2048517_sam|class=sIndent|trigger=none}{code:language=javascript}
// get the toolbar at the panel by name
var toolbar = plugins.menubar.getToolBar("toolbar_2");

// set the selection of the combobox at the index
// REMARK: the pitfall here is that the indexes start at position 1 here
// position 0 is reserved for the toolbar handle!
toolbar.selectComboBox(1, 0);
toolbar.selectComboBox(2, 0);
{code}{sub-section}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=947F51C5-2EE4-49DA-AA48-922AD7B2CC3F}{tr:id=name}{td}h6.setFieldText{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}void{span}{span:id=iets|style=float: left; font-weight: bold;}setFieldText{span}{span:id=iets|style=float: left;}\(index, text){span}{td}{tr}{tr:id=des}{td}{sub-section:947F51C5-2EE4-49DA-AA48-922AD7B2CC3F_des|text=|trigger=button}{sub-section}{sub-section:947F51C5-2EE4-49DA-AA48-922AD7B2CC3F_des|trigger=none|class=sIndent}Set a (default) text of the field at the given index.{sub-section}{td}{tr}{tr:id=prs}{td}*Parameters*\\{sub-section:947F51C5-2EE4-49DA-AA48-922AD7B2CC3F_prs|text=|trigger=button}{sub-section}{div:class=sIndent}{sub-section:947F51C5-2EE4-49DA-AA48-922AD7B2CC3F_prs|trigger=none}index
text
{sub-section}{div}{td}{tr}{tr:id=ret}{td}*Returns*\\{sub-section:947F51C5-2EE4-49DA-AA48-922AD7B2CC3F_ret|text=|trigger=button}{sub-section}{sub-section:947F51C5-2EE4-49DA-AA48-922AD7B2CC3F_ret|trigger=none|class=sIndent}void{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:947F51C5-2EE4-49DA-AA48-922AD7B2CC3F_see|text=|trigger=button}{sub-section}{sub-section:947F51C5-2EE4-49DA-AA48-922AD7B2CC3F_see|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:947F51C5-2EE4-49DA-AA48-922AD7B2CC3F_see|text=|trigger=button}{sub-section}{sub-section:947F51C5-2EE4-49DA-AA48-922AD7B2CC3F_link|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:947F51C5-2EE4-49DA-AA48-922AD7B2CC3F_sam|text=|trigger=button}{sub-section}{sub-section:947F51C5-2EE4-49DA-AA48-922AD7B2CC3F_sam|class=sIndent|trigger=none}{code:language=javascript}
// get the toolbar at the panel by name
var toolbar = plugins.menubar.getToolBar("toolbar_3");

// set the text of the field at the index
// REMARK: the pitfall here is that the indexes start at position 1 here
// position 0 is reserved for the toolbar handle!
toolbar.setFieldText(1, "new text 1");
toolbar.setFieldText(2, "new text 2");
{code}{sub-section}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=E6E9130F-90A2-4232-B31E-1D121D93EBC1}{tr:id=name}{td}h6.validate{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}void{span}{span:id=iets|style=float: left; font-weight: bold;}validate{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{tr:id=des}{td}{sub-section:E6E9130F-90A2-4232-B31E-1D121D93EBC1_des|text=|trigger=button}{sub-section}{sub-section:E6E9130F-90A2-4232-B31E-1D121D93EBC1_des|trigger=none|class=sIndent}You need to call this method after adding or removing items to/from the toolbar.{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:E6E9130F-90A2-4232-B31E-1D121D93EBC1_prs|text=|trigger=button}{sub-section}{div:class=sIndent}{sub-section:E6E9130F-90A2-4232-B31E-1D121D93EBC1_prs|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:E6E9130F-90A2-4232-B31E-1D121D93EBC1_ret|text=|trigger=button}{sub-section}{sub-section:E6E9130F-90A2-4232-B31E-1D121D93EBC1_ret|trigger=none|class=sIndent}void{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:E6E9130F-90A2-4232-B31E-1D121D93EBC1_see|text=|trigger=button}{sub-section}{sub-section:E6E9130F-90A2-4232-B31E-1D121D93EBC1_see|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:E6E9130F-90A2-4232-B31E-1D121D93EBC1_see|text=|trigger=button}{sub-section}{sub-section:E6E9130F-90A2-4232-B31E-1D121D93EBC1_link|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:E6E9130F-90A2-4232-B31E-1D121D93EBC1_sam|text=|trigger=button}{sub-section}{sub-section:E6E9130F-90A2-4232-B31E-1D121D93EBC1_sam|class=sIndent|trigger=none}{code:language=javascript}
// get the toolbar at the panel by name
var toolbar = plugins.menubar.getToolBar("toolbar_0");

// remove the button, checkbox, combobox, separator or field from the toolbar
// REMARK: the pitfall here is that the indexes start at position 1 here
// position 0 is reserved for the toolbar handle!
toolbar.removeItem(1);

// and validate the changes
// to make them know to the user interface)
toolbar.validate();
{code}{sub-section}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=A6552A81-5E0D-47C7-AFA6-3D0A8CE8F99D}{tr:id=name}{td}h6.visibleItem{td}{tr}{tr:id=sig}{td}{span:style=float: left; margin-right: 5px;}void{span}{span:id=iets|style=float: left; font-weight: bold;}visibleItem{span}{span:id=iets|style=float: left;}\(){span}{td}{tr}{builder-show:permission=edit}{tr:id=des}{td}{sub-section:A6552A81-5E0D-47C7-AFA6-3D0A8CE8F99D_des|text=|trigger=button}{sub-section}{sub-section:A6552A81-5E0D-47C7-AFA6-3D0A8CE8F99D_des|trigger=none|class=sIndent}Replace with description{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=prs}{td}*Parameters*\\{sub-section:A6552A81-5E0D-47C7-AFA6-3D0A8CE8F99D_prs|text=|trigger=button}{sub-section}{div:class=sIndent}{sub-section:A6552A81-5E0D-47C7-AFA6-3D0A8CE8F99D_prs|trigger=none}{sub-section}{div}{td}{tr}{builder-show}{tr:id=ret}{td}*Returns*\\{sub-section:A6552A81-5E0D-47C7-AFA6-3D0A8CE8F99D_ret|text=|trigger=button}{sub-section}{sub-section:A6552A81-5E0D-47C7-AFA6-3D0A8CE8F99D_ret|trigger=none|class=sIndent}void{sub-section}{td}{tr}{builder-show:permission=edit}{tr:id=see}{td}*Also see*\\{sub-section:A6552A81-5E0D-47C7-AFA6-3D0A8CE8F99D_see|text=|trigger=button}{sub-section}{sub-section:A6552A81-5E0D-47C7-AFA6-3D0A8CE8F99D_see|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{builder-show:permission=edit}{tr:id=link}{td}*External links*\\{sub-section:A6552A81-5E0D-47C7-AFA6-3D0A8CE8F99D_see|text=|trigger=button}{sub-section}{sub-section:A6552A81-5E0D-47C7-AFA6-3D0A8CE8F99D_link|class=sIndent|trigger=none}{sub-section}{td}{tr}{builder-show}{tr:id=sam}{td}*Sample*\\{sub-section:A6552A81-5E0D-47C7-AFA6-3D0A8CE8F99D_sam|text=|trigger=button}{sub-section}{sub-section:A6552A81-5E0D-47C7-AFA6-3D0A8CE8F99D_sam|class=sIndent|trigger=none}{code:language=javascript}
// get the toolbar at the panel by name
var toolbar = plugins.menubar.getToolBar("toolbar_2");

// make the selected item at the index visible/invisible
// REMARK: the pitfall here is that the indexes start at position 1 here
// position 0 is reserved for the toolbar handle!
toolbar.visibleItem(1, false);
{code}{sub-section}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{table}