| org.theospi.jsf.renderer.ScrollableAreaRenderer
ScrollableAreaRenderer | public class ScrollableAreaRenderer extends Renderer (Code) | | This class renders a scrollable area. It does this by
making a div and then making it "auto" overflow which places
scroll bars at the right and/or bottom. If the content is
small enough to fit into the div then no scroll bars are rendered.
There must be a height defined in this tag or by a surrounding tag.
If there is not then there must be a parent tag that has a height defined.
If there is not either, then the div will resize the height to
the total size of the content thus making this tag moot.
author: andersjb |
Method Summary | |
public void | encodeBegin(FacesContext context, UIComponent component) This renders html for the beginning of the tag. | public void | encodeEnd(FacesContext context, UIComponent component) | public boolean | supportsComponentType(UIComponent component) |
SCROLL_VISIBLE | final public static String SCROLL_VISIBLE(Code) | | |
encodeBegin | public void encodeBegin(FacesContext context, UIComponent component) throws IOException(Code) | | This renders html for the beginning of the tag.
Parameters: context - Parameters: component - throws: IOException - |
encodeEnd | public void encodeEnd(FacesContext context, UIComponent component) throws IOException(Code) | | Parameters: context - FacesContext for the request we are processing Parameters: component - UIComponent to be rendered exception: IOException - if an input/output error occurs while rendering exception: NullPointerException - if context or component is null |
supportsComponentType | public boolean supportsComponentType(UIComponent component)(Code) | | |
|
|