| java.lang.Object com.icesoft.faces.renderkit.dom_html_basic.PassThruAttributeRenderer
PassThruAttributeRenderer | public class PassThruAttributeRenderer (Code) | | This class is responsible for the rendering of html pass thru attributes.
|
Method Summary | |
final static List | getpassThruAttributeNames() | public static boolean | passThruAttributeExists(UIComponent uiComponent) Determine whether any of the attributes defined for the UIComponent
instance are pass thru attributes. | public static void | renderAttributes(FacesContext facesContext, UIComponent uiComponent, String[] excludedAttributes) Render pass thru attributes to the root element of the DOMContext
associated with the UIComponent parameter. | public static void | renderAttributes(FacesContext facesContext, UIComponent uiComponent, Element attributeElement, Element styleElement, String[] excludedAttributes) Render pass thru attributes to the attributeElement (instead of root)
associated with the UIComponent parameter. | public static void | renderOnBlur(Element root) Render the icefaces onblur handler to the root element. | public static void | renderOnFocus(UIComponent uiComponent, Element root) Render the icefaces onfocus handler to the root element. |
getpassThruAttributeNames | final static List getpassThruAttributeNames()(Code) | | |
passThruAttributeExists | public static boolean passThruAttributeExists(UIComponent uiComponent)(Code) | | Determine whether any of the attributes defined for the UIComponent
instance are pass thru attributes.
Parameters: uiComponent - true if the UIComponent parameter has one or more attributesdefined that are pass thru attributes |
renderAttributes | public static void renderAttributes(FacesContext facesContext, UIComponent uiComponent, String[] excludedAttributes)(Code) | | Render pass thru attributes to the root element of the DOMContext
associated with the UIComponent parameter. The excludedAttributes
argument is a String array of the names of attributes to omit. Do not
render attributes contained in the excludedAttributes argument.
Parameters: facesContext - Parameters: uiComponent - Parameters: excludedAttributes - attributes to exclude |
renderAttributes | public static void renderAttributes(FacesContext facesContext, UIComponent uiComponent, Element attributeElement, Element styleElement, String[] excludedAttributes)(Code) | | Render pass thru attributes to the attributeElement (instead of root)
associated with the UIComponent parameter. The excludedAttributes
argument is a String array of the names of attributes to omit. Do not
render attributes contained in the excludedAttributes argument.
Parameters: facesContext - Parameters: uiComponent - Parameters: attributeElement - Parameters: styleElement - The Element to apply styling on Parameters: excludedAttributes - attributes to exclude |
renderOnBlur | public static void renderOnBlur(Element root)(Code) | | Render the icefaces onblur handler to the root element. This should be
restricted to input type elements and commandlinks.
Parameters: root - |
renderOnFocus | public static void renderOnFocus(UIComponent uiComponent, Element root)(Code) | | Render the icefaces onfocus handler to the root element. This should be
restricted to input type elements and commandlinks.
Parameters: uiComponent - Parameters: root - |
|
|