goog.ui.ContainerRenderer
Provided By | |
---|---|
All Known Direct Subclasses |
Default renderer for goog.ui.Container
. Can be used as-is, but
subclasses of Container will probably want to use renderers specifically
tailored for them by extending this class.
new ContainerRenderer( opt_ariaRole )
Parameters |
|
---|
Instance Methods
this.canDecorate( element ) → boolean
boolean
Default implementation of canDecorate
; returns true if the element
is a DIV, false otherwise.
Parameters |
| ||||
---|---|---|---|---|---|
Returns |
|
this.createDom( container ) → (Element|null)
(Element|null)
Creates and returns the container's root element. The default simply creates a DIV and applies the renderer's own CSS class name to it. To be overridden in subclasses.
Parameters |
| ||||
---|---|---|---|---|---|
Returns |
|
this.decorate( container, element ) → Element
Element
Default implementation of decorate
for goog.ui.Container
s.
Decorates the element with the container, and attempts to decorate its child
elements. Returns the decorated element.
Parameters |
| ||||||||
---|---|---|---|---|---|---|---|---|---|
Returns |
|
this.decorateChildren( container, element, opt_firstChild ) → void
void
Takes a container and an element that may contain child elements, decorates the child elements, and adds the corresponding components to the container as child components. Any non-element child nodes (e.g. empty text nodes introduced by line breaks in the HTML source) are removed from the element.
Parameters |
|
---|
this.enableTabIndex( element, enable ) → void
void
Enables or disables the tab index of the element. Only elements with a valid tab index can receive focus.
Parameters |
|
---|
this.getAriaRole() → (string|undefined)
(string|undefined)
Returns the ARIA role to be applied to the container. See http://wiki/Main/ARIA for more info.
Parameters | None. | ||
---|---|---|---|
Returns |
|
Returns all CSS class names applicable to the given container, based on its state. The array of class names returned includes the renderer's own CSS class, followed by a CSS class indicating the container's orientation, followed by any state-specific CSS classes.
Parameters |
| ||||
---|---|---|---|---|---|
Returns |
|
this.getContentElement( element ) → (Element|null)
(Element|null)
Returns the DOM element into which child components are to be rendered, or null if the container hasn't been rendered yet.
Parameters |
| ||||
---|---|---|---|---|---|
Returns |
|
this.getCssClass() → string
string
Returns the CSS class to be applied to the root element of containers rendered using this renderer.
Parameters | None. | ||
---|---|---|---|
Returns |
|
this.getDecoratorForChild( element ) → (goog.ui.Control|null)
(goog.ui.Control|null)
Inspects the element, and creates an instance of goog.ui.Control
or
an appropriate subclass best suited to decorate it. Returns the control (or
null if no suitable class was found). This default implementation uses the
element's CSS class to find the appropriate control class to instantiate.
May be overridden in subclasses.
Parameters |
| ||||
---|---|---|---|---|---|
Returns |
|
this.getDefaultOrientation() → goog.ui.Container.Orientation
goog.ui.Container.Orientation
Returns the default orientation of containers rendered or decorated by this
renderer. The base class implementation returns VERTICAL
.
Parameters | None. | ||
---|---|---|---|
Returns |
|
this.getKeyEventTarget( container ) → (Element|null)
(Element|null)
Returns the element within the container's DOM that should receive keyboard focus (null if none). The default implementation returns the container's root element.
Parameters |
| ||||
---|---|---|---|---|---|
Returns |
|
this.initializeDom( container ) → void
void
Initializes the container's DOM when the container enters the document.
Called from goog.ui.Container#enterDocument
.
Parameters |
|
---|
this.setStateFromClassName( container, className, baseClass ) → void
void
Sets the container's state based on the given CSS class name, encountered during decoration. CSS class names that don't represent container states are ignored. Considered protected; subclasses should override this method to support more states and CSS class names.
Parameters |
|
---|
Static Functions
ContainerRenderer.getCustomRenderer( ctor, cssClassName ) → (goog.ui.ContainerRenderer|null)
(goog.ui.ContainerRenderer|null)
Constructs a new renderer and sets the CSS class that the renderer will use as the base CSS class to apply to all elements rendered by that renderer. An example to use this function using a menu is:
var myCustomRenderer = goog.ui.ContainerRenderer.getCustomRenderer( goog.ui.MenuRenderer, 'my-special-menu'); var newMenu = new goog.ui.Menu(opt_domHelper, myCustomRenderer);
Your styles for the menu can now be:
.my-special-menu { }
instead of
.CSS_MY_SPECIAL_MENU .goog-menu { }
You would want to use this functionality when you want an instance of a component to have specific styles different than the other components of the same type in your application. This avoids using descendant selectors to apply the specific styles to this component.
Parameters |
| ||||||||
---|---|---|---|---|---|---|---|---|---|
Returns |
|
ContainerRenderer.getInstance() → goog.ui.ContainerRenderer
goog.ui.ContainerRenderer
Parameters | None. | |
---|---|---|
Returns |
|
Static Properties
ContainerRenderer.CSS_CLASS → string
string
Default CSS class to be applied to the root element of containers rendered by this renderer.