net.sf.basedb.clients.web.taglib.menu
Class Menu
java.lang.Object
javax.servlet.jsp.tagext.TagSupport
net.sf.basedb.clients.web.taglib.StylableTag
net.sf.basedb.clients.web.taglib.menu.Menu
- All Implemented Interfaces:
- Serializable, IterationTag, JspTag, Tag
public class Menu
- extends StylableTag
This tag defines a drop-down menu that is is opened when the user moves the
mouse over or clicks at the title of the menu.
This tag can only be used inside a Body
tag and you should have at
least one of these tags. Use Menuitem
and/or Menuseparator
tags inside this tag to define the contents of the drop-down menu.
Syntax:
<m:menu
id=...
type=...
clazz=...
subclass=...
style=...
open=...
filltext=...
>
Attribute |
Default value |
Required |
Description |
id |
- |
yes |
The ID of the menu. The value of this attribute
goes directly into the standard HTML id attribute.
This means that if you need a reference to the menu object in your own
JavaScript code, you may for example use the following code:
menu = document.getElementById('<id>');
|
type |
vertical |
no |
If the menu should be displayed vertically or horizontally. The
allowed values are horizontal and vertical
|
clazz |
menu_vertical |
no |
The value if this attribute goes directly into the standard HTML
class attribute. This allows you to apply different styles
to different menus. If you set the type attribute to horizontal you
should also change this attribute to menu_horizontal .
|
style |
- |
no |
The value if this attribute goes directly into the standard HTML
style attribute. This allows you to apply different styles
to different menus. Note! If you want the menu to be hidden to begin with
you can use: style="display: none;" .
|
open |
enter |
no |
A value indicating if it requires a mouse click or not to
open a menu. Valid values are:
- enter: The menu will open as soon as the mouse enters
- click: The menu will not open until the mouse is clicked
|
filltext |
- |
no |
A short text that will be displayed to the far right of the menu if it
is a horizontal menu. This value is ignored for vertical menus.
|
- Version:
- 2.0
- Author:
- Nicklas
- See Also:
- Serialized Form
Field Summary |
private String |
fillText
Optional text to display to the far right of a horizontal menu |
private String |
open
If submenus opens as soon as the mouse enters or a click is required. |
private static String |
ROOT
The path to the root directory of this webserver. |
private String |
type
If it is a vertical or horizontal menu. |
Constructor Summary |
Menu()
|
Methods inherited from class javax.servlet.jsp.tagext.TagSupport |
doAfterBody, findAncestorWithClass, getId, getParent, getValue, getValues, release, removeValue, setId, setPageContext, setParent, setValue |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ROOT
private static String ROOT
- The path to the root directory of this webserver.
type
private String type
- If it is a vertical or horizontal menu.
open
private String open
- If submenus opens as soon as the mouse enters or a click is required.
fillText
private String fillText
- Optional text to display to the far right of a horizontal menu
Menu
public Menu()
setType
public void setType(String type)
getType
public String getType()
setOpen
public void setOpen(String open)
getOpen
public String getOpen()
setFilltext
public void setFilltext(String fillText)
getFilltext
public String getFilltext()
isVertical
boolean isVertical()
addMenuitem
void addMenuitem(String html)
throws Exception
- Throws:
Exception
getRoot
String getRoot()
doStartTag
public int doStartTag()
throws JspException
- Specified by:
doStartTag
in interface Tag
- Overrides:
doStartTag
in class TagSupport
- Throws:
JspException
doEndTag
public int doEndTag()
throws JspException
- Specified by:
doEndTag
in interface Tag
- Overrides:
doEndTag
in class TagSupport
- Throws:
JspException