Package com.microstrategy.web.app.gui
Interface Toolbar
- 
- All Superinterfaces:
 GuiElement
public interface Toolbar extends GuiElement
Title: Toolbar.
This
GuiElementrepresents a toolbar object to be displayed on the interface to the user. A toolbar is a series of buttons, combo boxes and other options that are provided for the user to submit requests or manipulations with a single click action. This class is used by theToolbarBeanand its related transforms such asToolbarTransform- Since:
 - MicroStrategy Web 8.0.0
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetBodyCss()Get the css class to use for the formatting of the body contents of the toolbar to be displayed by this component.JsonGeneratorgetBoneProps()Generate an instance ofJsonGeneratorwhere properties of the toolbar will be saved for future use with JavaScript code defined for handling manipulations and requests on client side.java.lang.StringgetPickersCss()Get the css class to use for the formatting of the pickers that will be available on the toolbarShortcutListSetgetToolbar()Get the list ofShortcutListelements which are to be rendered by this toolbar.java.lang.StringgetToolbarCss()Get the css class to use for the global formatting of the toolbar to be displayed by this component.voidsetBodyCss(java.lang.String css)Define the css class to use for the formatting of the body contents of the toolbar to be displayed by this component.voidsetPickersCss(java.lang.String css)Define the css class to use for the formatting of the pickers that will be available on the toolbarvoidsetToolbar(ShortcutListSet links)Set the list ofShortcutListelements which are to be rendered by this toolbar.voidsetToolbarCss(java.lang.String css)Define the css class to use for the global formatting of the toolbar to be displayed by this component.- 
Methods inherited from interface com.microstrategy.web.app.gui.GuiElement
getAppContext, getDescriptor, getDescriptor, getEventManager, getExtraInput, getExtraUrl, getFeatures, getMessages, getName, getUseIFrame, getWebComponent, renderElement, renderElement, setAppContext, setExtraInput, setExtraUrl, setName, setUseIFrame, setWebComponent 
 - 
 
 - 
 
- 
- 
Method Detail
- 
setToolbarCss
void setToolbarCss(java.lang.String css)
Define the css class to use for the global formatting of the toolbar to be displayed by this component.- Parameters:
 css- String value with the name of the css class to use.
 
- 
getToolbarCss
java.lang.String getToolbarCss()
Get the css class to use for the global formatting of the toolbar to be displayed by this component.- Returns:
 - String value with the name of the css class to use.
 
 
- 
setBodyCss
void setBodyCss(java.lang.String css)
Define the css class to use for the formatting of the body contents of the toolbar to be displayed by this component.- Parameters:
 css- String value with the name of the css class to use.
 
- 
getBodyCss
java.lang.String getBodyCss()
Get the css class to use for the formatting of the body contents of the toolbar to be displayed by this component.- Returns:
 - String value with the name of the css class to use.
 
 
- 
setPickersCss
void setPickersCss(java.lang.String css)
Define the css class to use for the formatting of the pickers that will be available on the toolbar- Parameters:
 css- String value with the name of the css class to use
 
- 
getPickersCss
java.lang.String getPickersCss()
Get the css class to use for the formatting of the pickers that will be available on the toolbar- Returns:
 - String value with the name of the css class to use
 
 
- 
getBoneProps
JsonGenerator getBoneProps()
Generate an instance ofJsonGeneratorwhere properties of the toolbar will be saved for future use with JavaScript code defined for handling manipulations and requests on client side.- Returns:
 JsonGeneratorinitialized instance where properties of the JavaScript component for this Toolbar can be defined.
 
- 
setToolbar
void setToolbar(ShortcutListSet links)
Set the list ofShortcutListelements which are to be rendered by this toolbar.- Parameters:
 links- aShortcutListSetinstance with the list ofShortcutListelements that include the options this toolbar will provide.
 
- 
getToolbar
ShortcutListSet getToolbar()
Get the list ofShortcutListelements which are to be rendered by this toolbar.- Returns:
 - the 
ShortcutListSetinstance with the list ofShortcutListelements that include the options this toolbar will provide. 
 
 - 
 
 -