Class Button.ButtonActionWrapper
java.lang.Object
net.sf.basedb.clients.web.taglib.table.Button.ButtonActionWrapper
- All Implemented Interfaces:
DynamicActionAttributes
,ButtonAction
,Action
- Enclosing class:
- Button
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetClazz()
Class attribute of the main button tag.Get an iterator that return all dynamic attributes.getIcon()
Get a reference to an image that will be displayed in the menu.getId()
ID attribute of the main button tag.getStyle()
Extra CSS style attributes that will be added to thestyle
attribute of the main button tag.int
Get the tab index used to control focus order when tabbing.getTitle()
Get the title of the button.A tooltip that is shown as a yellow popup when the user points the mouse at the button.boolean
If the button should be enabled or disabled.boolean
If the button should be visible or not.
-
Constructor Details
-
ButtonActionWrapper
ButtonActionWrapper()
-
-
Method Details
-
getId
Description copied from interface:ButtonAction
ID attribute of the main button tag. You need to set this value to reference the button in a javascript.- Specified by:
getId
in interfaceButtonAction
- Returns:
- The ID, or null
-
getClazz
Description copied from interface:ButtonAction
Class attribute of the main button tag. The default value is "button".- Specified by:
getClazz
in interfaceButtonAction
- Returns:
- Class attribute, or null to use the default "button"
-
getStyle
Description copied from interface:ButtonAction
Extra CSS style attributes that will be added to thestyle
attribute of the main button tag.- Specified by:
getStyle
in interfaceButtonAction
- Returns:
- Style attributes, or null
-
getTitle
Description copied from interface:ButtonAction
Get the title of the button.- Specified by:
getTitle
in interfaceButtonAction
-
getTooltip
Description copied from interface:ButtonAction
A tooltip that is shown as a yellow popup when the user points the mouse at the button.- Specified by:
getTooltip
in interfaceButtonAction
- Returns:
- The tooltip or null to not display any tooltip
-
getIcon
Description copied from interface:ButtonAction
Get a reference to an image that will be displayed in the menu. It is recommended that the image is 16x16 pixels to line up with the other icons used by the BASE.- Specified by:
getIcon
in interfaceButtonAction
- Returns:
- A reference to an image, or null if no image should be used
-
isEnabled
public boolean isEnabled()Description copied from interface:ButtonAction
If the button should be enabled or disabled.- Specified by:
isEnabled
in interfaceButtonAction
-
isVisible
public boolean isVisible()Description copied from interface:ButtonAction
If the button should be visible or not.- Specified by:
isVisible
in interfaceButtonAction
-
getTabIndex
public int getTabIndex()Description copied from interface:ButtonAction
Get the tab index used to control focus order when tabbing. Use -1 to disable.- Specified by:
getTabIndex
in interfaceButtonAction
-
getDynamicActionAttributes
Description copied from interface:DynamicActionAttributes
Get an iterator that return all dynamic attributes. If no dynamic attributes have been defined, the method may return null or an iterator that doesn't return any elements.- Specified by:
getDynamicActionAttributes
in interfaceDynamicActionAttributes
- Returns:
- An iterator or null
-