JSLayoutContainer
Last updated
Last updated
Type | Name | Summary |
---|---|---|
Type | Name | Summary |
---|---|---|
The css classes to be output for html tag.
Type String
Sample
The id to be output for html tag.
Type String
Sample
Get/set container height. This is only used for CSS Position Container.
Type Number
Sample
The name of the component. Through this name it can also accessed in methods. Must be a valid javascript name. (no - in the name or start with number)
Type String
Sample
returns the layouts package name
Type String String
returns the layouts spec name
Type String String
The tag type for html output. Default value is 'div'.
Type String
Sample
Get/set x location. Location is used for ordering in html output.
Type Number
Sample
Get/set Y location. Location is used for ordering in html output.
Type Number
Sample
Returns a JSLayoutContainer that has the given name throughout the whole form hierarchy.
Parameters
String name the specified name of the container
Returns: JSLayoutContainer a JSLayoutContainer object
Sample
Returns a JSWebComponent that has the given name through the whole hierarchy of JSLayoutContainers
Parameters
String name the specified name of the web component
Returns: JSComponent a JSWebComponent object
Sample
Parameters
String name the attributes name
Returns: String
Sample
Returns the comment of this container.
Returns: String
Sample
Returns a JSComponent that has the given name; if found it will be a JSField, JSLabel, JSButton, JSPortal, JSBean, JSWebComponent or JSTabPanel.
Parameters
String name the specified name of the component
Returns: JSComponent a JSComponent object (might be a JSField, JSLabel, JSButton, JSPortal, JSBean, JSWebComponent or JSTabPanel)
Sample
Returns a array of all the JSComponents that a form has; they are of type JSField,JSLabel,JSButton,JSPortal,JSBean, JSWebComponents or JSTabPanel.
Returns: Array an array of all the JSComponents on the form.
Sample
Returns a array of all the JSComponents that a form has; they are of type JSField,JSLabel,JSButton,JSPortal,JSBean, JSWebComponent or JSTabPanel.
Parameters
Boolean returnInheritedElements true to also return the elements from the parent form
Returns: Array an array of all the JSComponents on the form.
Sample
Returns a JSLayoutContainer that has the given name of this container. Use findLayoutContainer() method to find a JSLayoutContainter through the hierarchy
Parameters
String name the specified name of the container
Returns: JSLayoutContainer a JSLayoutContainer object
Sample
Returns all JSLayoutContainers objects of this container. Does not return the inherited containers, use #getLayoutContainers(true) to get the inherited as well.
Returns: Array all JSLayoutContainers objects of this container
Sample
Returns all JSLayoutContainers objects of this container
Parameters
Boolean returnInheritedElements true to also return the elements from parent form
Returns: Array all JSLayoutContainers objects of this container
Sample
Returns a JSWebComponent that has the given name that is a child of this layout container. Use findWebComponent() to find a webcomponent through the hierarchy
Parameters
String name the specified name of the web component
Returns: JSComponent a JSWebComponent object
Sample
Returns all JSWebComponents of this form/container. If this method is called on a form, then it will return all web components on that form. If the form is responsive, it will return the web components from all the containers. It does not return the inherited components, use #getWebComponents(true) to get the inherited as well.
Returns: Array the list of all JSWebComponent on this forms
Sample
Returns all JSWebComponents of this form/container. If this method is called on a form, then it will return all web components on that form. If the form is responsive, it will return the web components from all the containers.
Parameters
Boolean returnInheritedElements true to also return the elements from parent form
Returns: Array the list of all JSWebComponents on this forms
Sample
Create a new layout container as the last child of its parent container. This method can only be used in responsive forms.
If you want to use default values and so on from a layout package (like 12grid) or if you use the solution model to create a form that is saved back into the workspace (servoyDeveloper.save(form)) then you have to set the packageName and specName properties. So that it works later on in the designer.
If the packageName and specName are not provided, then: the packageName is the same as for the parent container the specName is the first allowed child defined in the specification of the parent container
If the specification of the parent container does not defined allowed children, then if it is not empty the packageName and the specName are copied from the first child layout container.
Returns: JSLayoutContainer the new layout container
Sample
Create a new layout container. The position is used to determine the generated order in html markup. This method can only be used in responsive forms.
If you want to use default values and so on from a layout package (like 12grid) or if you use the solution model to create a form that is saved back into the workspace (servoyDeveloper.save(form)) then you have to set the packageName and specName properties. So that it works later on in the designer.
If the packageName and specName are not provided, then: the packageName is the same as for the parent container the specName is the first allowed child defined in the specification of the parent container
If the specification of the parent container does not defined allowed children, then if it is not empty the packageName and the specName are copied from the first child layout container.
Parameters
Number position the position of JSWebComponent object in its parent container
Returns: JSLayoutContainer the new layout container
Sample
Create a new layout container. The position is used to determine the generated order in html markup. This method can only be used in responsive forms.
Parameters
Number position the position of JSWebComponent object in its parent container
String spec a string of the form 'packageName-layoutName', or 'layoutName'
Returns: JSLayoutContainer the new layout container
Sample
Create a new layout container as the last child in its parent container. This method can only be used in responsive forms.
Parameters
String spec a string of the form 'packageName-layoutName', or 'layoutName'
Returns: JSLayoutContainer the new layout container
Sample
Creates a new JSWebComponent (spec based component) object on the RESPONSIVE form. Will receive a generated name. Will be added as last position in container.
Parameters
String type the webcomponent name as it appears in the spec
Returns: JSComponent a JSWebComponent object
Sample
Creates a new JSWebComponent (spec based component) object on the RESPONSIVE form. Will receive a generated name.
Parameters
String type the webcomponent name as it appears in the spec
Number position the position of JSWebComponent object in its parent container
Returns: JSComponent a JSWebComponent object
Sample
Creates a new JSWebComponent (spec based component) object on the RESPONSIVE form, as the last component in its parent container.
Parameters
String name the specified name of the JSWebComponent object
String type the webcomponent name as it appears in the spec
Returns: JSComponent a JSWebComponent object
Sample
Creates a new JSWebComponent (spec based component) object on the RESPONSIVE form.
Parameters
String name the specified name of the JSWebComponent object
String type the webcomponent name as it appears in the spec
Number position the position of JSWebComponent object in its parent container
Returns: JSComponent a JSWebComponent object
Sample
Creates a new JSWebComponent (spec based component) object on the form.
Parameters
String name the specified name of the JSWebComponent object
String type the webcomponent name as it appears in the spec
Number x the horizontal "x" position of the JSWebComponent object in pixels
Number y the vertical "y" position of the JSWebComponent object in pixels
Number width the width of the JSWebComponent object in pixels
Number height the height of the JSWebComponent object in pixels
Returns: JSComponent a JSWebComponent object
Sample
Parameters
Returns: void
Sample
Remove a layout container (with all its children) from hierarchy.
Returns: void
Sample
Removes a component (JSLabel, JSButton, JSField, JSPortal, JSBean, JSTabpanel, JSWebComponent) that has the given name. It is the same as calling "if(!removeLabel(name) && !removeButton(name) ....)". Returns true if removal was successful, false otherwise.
Parameters
String name the specified name of the component to be deleted
Returns: Boolean true if component has been successfully deleted; false otherwise
Sample
Removes a JSWebComponent that has the specified name. Returns true if removal was successful, false otherwise.
Parameters
String name the specified name of the JSWebComponent to be removed
Returns: Boolean true if the JSWebComponent has been removed; false otherwise
Sample
The css classes to be output for html tag.
The id to be output for html tag.
Get/set container height.
The name of the component.
returns the layouts package name
returns the layouts spec name
The tag type for html output.
Get/set x location.
Get/set Y location.
Returns a JSLayoutContainer that has the given name throughout the whole form hierarchy.
Returns a JSWebComponent that has the given name through the whole hierarchy of JSLayoutContainers
Returns the comment of this container.
Returns a JSComponent that has the given name; if found it will be a JSField, JSLabel, JSButton, JSPortal, JSBean, JSWebComponent or JSTabPanel.
Returns a array of all the JSComponents that a form has; they are of type JSField,JSLabel,JSButton,JSPortal,JSBean, JSWebComponents or JSTabPanel.
Returns a array of all the JSComponents that a form has; they are of type JSField,JSLabel,JSButton,JSPortal,JSBean, JSWebComponent or JSTabPanel.
Returns a JSLayoutContainer that has the given name of this container.
Returns all JSLayoutContainers objects of this container.
Returns all JSLayoutContainers objects of this container
Returns a JSWebComponent that has the given name that is a child of this layout container.
Returns all JSWebComponents of this form/container.
Returns all JSWebComponents of this form/container.
Create a new layout container as the last child of its parent container.
Create a new layout container.
Create a new layout container.
Create a new layout container as the last child in its parent container.
Creates a new JSWebComponent (spec based component) object on the RESPONSIVE form.
Creates a new JSWebComponent (spec based component) object on the RESPONSIVE form.
Creates a new JSWebComponent (spec based component) object on the RESPONSIVE form, as the last component in its parent container.
Creates a new JSWebComponent (spec based component) object on the RESPONSIVE form.
Creates a new JSWebComponent (spec based component) object on the form.
void
void
Remove a layout container (with all its children) from hierarchy.
Removes a component (JSLabel, JSButton, JSField, JSPortal, JSBean, JSTabpanel, JSWebComponent) that has the given name.
Removes a JSWebComponent that has the specified name.