|
3.1.1: 2012-03-29 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectnet.sf.basedb.clients.web.extensions.menu.MenuItemBean
public class MenuItemBean
A simple bean-like implementation of the MenuItemAction
interface.
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from interface net.sf.basedb.clients.web.extensions.menu.MenuItemAction |
|---|
MenuItemAction.MenuType |
| Field Summary | |
|---|---|
private boolean |
enabled
|
private String |
icon
|
private String |
menuId
|
private String |
onClick
|
private String |
style
|
private String |
submenuId
|
private String |
title
|
private String |
tooltip
|
private MenuItemAction.MenuType |
type
|
private boolean |
visible
|
| Constructor Summary | |
|---|---|
MenuItemBean()
Create a new empty menu item action. |
|
MenuItemBean(MenuItemAction.MenuType type,
String menuId,
String submenuId,
String title,
String onClick,
String tooltip,
String icon,
String style,
boolean enabled,
boolean visible)
Create a new initialised menu item action |
|
| Method Summary | |
|---|---|
String |
getIcon()
Get an absolute reference to an image that will be displayed in the menu. |
String |
getMenuId()
The ID of the menu where this menu item belongs, or null if it belongs to the top-level menu. |
String |
getOnClick()
A javascript action that is executed when the user clicks the menu. |
String |
getStyle()
Extra CSS style attributes that will be added to the style attribute of the menu item div. |
String |
getSubmenuId()
The ID of a new submenu. |
String |
getTitle()
Get the title of the menu. |
String |
getTooltip()
A tooltip that is shown as a yellow popup when the user points the mouse at the menu item. |
MenuItemAction.MenuType |
getType()
The type of menu item. |
boolean |
isEnabled()
If the menu item should be enabled or disabled. |
boolean |
isVisible()
If the menu item should be visible or not. |
void |
setEnabled(boolean enabled)
|
void |
setIcon(String icon)
|
void |
setMenuId(String menuId)
|
void |
setOnClick(String onClick)
|
void |
setStyle(String style)
|
void |
setSubmenuId(String submenuId)
|
void |
setTitle(String title)
|
void |
setTooltip(String tooltip)
|
void |
setType(MenuItemAction.MenuType type)
|
void |
setVisible(boolean visible)
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
private String menuId
private String submenuId
private String icon
private String onClick
private String style
private String title
private String tooltip
private boolean enabled
private boolean visible
private MenuItemAction.MenuType type
| Constructor Detail |
|---|
public MenuItemBean()
public MenuItemBean(MenuItemAction.MenuType type,
String menuId,
String submenuId,
String title,
String onClick,
String tooltip,
String icon,
String style,
boolean enabled,
boolean visible)
| Method Detail |
|---|
public String getIcon()
MenuItemAction
getIcon in interface MenuItemActionpublic String getMenuId()
MenuItemAction
getMenuId in interface MenuItemActionpublic String getOnClick()
MenuItemActionMenu.openUrl(url)
The URL can be any valid URL. To access a JSP page on the BASE server you need to know the root path of the web application and the session ID for the logged in user. This information available in the JspContext passed to the factory class. If you, for example, want to open the reporters list page, you can create the URL like this:
String url = jspContext.getRoot() + "/views/reporters/index.jsp?ID=" + jspContext.getSessionControl().getId();It is also possible to use pure JavaScript to extract the root URL and session ID. Here is an example that opens the reporter list page:
Menu.openUrl(getRoot()+'views/reporters/index.jsp?ID='+getSessionId());Another possibility that works for the root path is to use a factory that has enabled variable substitution. In this case you can use:
Menu.openUrl('$ROOT$/views/reporters/index.jsp?ID='+getSessionId());
Main.openPopup(url, windowName, width, height, options)
The URL follows the same rules as the above. The windowName
is a name to give to the popup window. Use only alphabetical characters (a-z).
The size is controlled with the width and height
options, given in pixels. BASE will automatically rescale the window
if the user has choosen a bigger or smaller font size. Other
options can be specified in the options parameter. See
documentation for the window.open() javascript function
for valid syntax.
getOnClick in interface MenuItemActionpublic String getStyle()
MenuItemActionstyle attribute of the menu item div.
getStyle in interface MenuItemActionpublic String getSubmenuId()
MenuItemActionMenuItemAction.MenuType.SUBMENU, and is ignored otherwise.
getSubmenuId in interface MenuItemActionpublic String getTitle()
MenuItemAction
getTitle in interface MenuItemActionpublic String getTooltip()
MenuItemAction
getTooltip in interface MenuItemActionpublic MenuItemAction.MenuType getType()
MenuItemAction
getType in interface MenuItemActionpublic boolean isEnabled()
MenuItemAction
isEnabled in interface MenuItemActionpublic boolean isVisible()
MenuItemAction
isVisible in interface MenuItemActionpublic void setIcon(String icon)
public void setMenuId(String menuId)
public void setOnClick(String onClick)
public void setStyle(String style)
public void setSubmenuId(String submenuId)
public void setTitle(String title)
public void setTooltip(String tooltip)
public void setEnabled(boolean enabled)
public void setVisible(boolean visible)
public void setType(MenuItemAction.MenuType type)
|
3.1.1: 2012-03-29 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||