Class BaseClientElement

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getClientId()
      When invoked the first time (per request), a unique id is assigned and and id attribute added to the element for the component.
      protected void storeElement​(Element element)
      Invoked (usually from a BeginRender phase method) to assign the element, and clear the clientId (only relevant for components that render in a loop).
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • storeElement

        protected void storeElement​(Element element)
        Invoked (usually from a BeginRender phase method) to assign the element, and clear the clientId (only relevant for components that render in a loop).
        Parameters:
        element - the element to store
      • getClientId

        public java.lang.String getClientId()
        When invoked the first time (per request), a unique id is assigned and and id attribute added to the element for the component.
        Specified by:
        getClientId in interface ClientElement
        Returns:
        a unique id for the element. This value will be unique for any given rendering of a page. This value is intended for use as the id attribute of the client-side element, and will be used with any DHTML/Ajax related JavaScript.