ABSTRACTCONTAINER
| Name space |
rialto.widget |
| FILE |
rialtoEngine\javascript\core\coreContainers\abstractContainer.js |
| NAME |
ABSTRACTCONTAINER |
| INHERITS |
AbstractComponent
|
| VERSION |
0.86 |
| update |
|
| DESCRIPTION |
This object is an abstraction which inherits all the widgets who can contains others |
CONSTRUCTOR
Example:
This object is instanciate in the constructor of the widgets (same parameter than abstractComponent)
PUBLIC METHODS
| Method |
Arguments list |
Return value |
Inherits |
To redefine |
|
add
|
object elt |
void |
no |
no |
|
removeContents
|
object elt |
void |
no |
no |
|
getHtmlCont
|
|
HTML object |
no |
no |
add
this method alllow to add an element in the container
Parameters:
object elt:object to add (can be a javascript object or an html element)
removeContents
this method remove a container's component pass in parameter from it
Parameters:
object elt:object to remove (can be a javascript object or an html element)
getHtmlCont
return the HTML element of the object to use as container
Parameters: