| com.sun.rave.web.ui.component.AnchorBase
All known Subclasses: com.sun.rave.web.ui.component.Anchor,
AnchorBase | abstract public class AnchorBase extends javax.faces.component.UIComponentBase (Code) | | Use the ui:anchor tag
to create HTML anchors in the rendered HTML page. You can then use ui:hyperlink
tags that jump to the locations of the anchors in the page.
HTML Elements and Layout
The ui:anchor tag
creates an <a> element in the rendered HTML page.
The name and id attributes of the <a> element are
both set to the value of the id attribute specified with the ui:anchor
tag. The name attibute is included to maintain compatibility with older
browsers.
Client Side Javascript Functions
None.
Examples
Example 1: Create an anchor
<ui:anchor id="anchor1" />
This generates an anchor,
with id and name set to the same
value.
<a id="anchor1" name="anchor1"
/>
Example 2: Create a hyperlink to
that will go to the anchor above
<ui:hyperlink id="gotoAnchor1"
url="#anchor1" />
Example 3: Create a context relative hyperlink to
go to
the anchor
in Example 1
<ui:hyperlink id="gotoAnchor1"
url="/faces/hyperlink.jsp#anchor1" />
Note: In the url
attribute, you must specify a path that maps to the correct servlet.
However, you do not need the context. In this example, the /faces part of the path maps to the servlet
through the JSF FacesServlet as defined in the web.xml.
Auto-generated component class.
Do NOT modify; all changes
will be lost!
|
AnchorBase | public AnchorBase()(Code) | | Construct a new AnchorBase .
|
getFamily | public String getFamily()(Code) | | Return the identifier of the component family to which this
component belongs. This identifier, in conjunction with the value
of the rendererType property, may be used to select
the appropriate
Renderer for this component instance.
|
getStyle | public String getStyle()(Code) | | CSS style(s) to be applied when this component is rendered.
|
getStyleClass | public String getStyleClass()(Code) | | CSS style class(es) to be applied when this component is rendered.
|
restoreState | public void restoreState(FacesContext _context, Object _state)(Code) | | Restore the state of this component.
|
saveState | public Object saveState(FacesContext _context)(Code) | | Save the state of this component.
|
|
|