JSForm
Last updated
Last updated
The JSForm
is a Solution Model wrapper for forms, providing properties and methods to dynamically manage and interact with forms in an application. It includes constants for specifying foundset behavior and selection modes, properties like dataSource
, name
, and selectionMode
, and methods for creating, accessing, and manipulating form components, variables, methods, and layout containers.
With encapsulation levels, event handlers (e.g., onShow
, onHide
, onRecordSelection
), and integration of design-time properties, JSForm
is pivotal for customizing forms at runtime. It supports responsive layouts, default sorting, transparent forms, and CSS-based positioning, enabling developers to tailor the UI dynamically while managing forms effectively.
Please refer to the Form section of this documentation for details.
Type | Name | Summary |
---|---|---|
Type | Name | Summary |
---|---|---|
Constant used for form namedFoundset property. The form that uses empty namedFoundset will initially have an empty (cleared) foundset.
Type String
Sample
Constant used for form selectionMode property. It means that the foundset's multiSelect property is used.
Type Number
Sample
Constant used for form selectionMode property. It means that the form will force multiSelect to true on the foundset it uses.
Type Number
Sample
Constant used for form selectionMode property. It means that the form will force multiSelect to false on the foundset it uses.
Type Number
Sample
Constant used for form namedFoundset property. The form that uses a separate namedFoundset will initially have an separate (not shared with other forms) foundset.
Type String
Sample
The names of the database server and table that this form is linked to.
Type String
Sample
Get or set the encapsulation level for the form.
Encapsulation is one of constants JSForm.DEFAULT_ENCAPSULATION, JSForm.PRIVATE_ENCAPSULATION, JSForm.MODULE_PRIVATE_ENCAPSULATION, JSForm.HIDE_DATAPROVIDERS_ENCAPSULATION, JSForm.HIDE_FOUNDSET_ENCAPSULATION, JSForm.HIDE_CONTROLLER_ENCAPSULATION or JSForm.HIDE_ELEMENTS_ENCAPSULATION
Type Number
Sample
A JSForm instance representing the super form of this form, if this form has a super form.
Type JSForm
Sample
The default sort order only when the form loads. This is applied each time an internal SQL query is being executed (find, find-all, open form); and is only executed when no other manual sort has been performed on the foundset.
Type String
Sample
The height of the form in pixels.
Type Number
Sample
The width of the form in pixels.
Type Number
Sample
The name of the form.
Type String
Sample
Property that tells the form to use a named foundset instead of the default foundset. When JSForm.SEPARATE_FOUNDSET is specified the form will always create a copy of assigned foundset and therefore become separated from other foundsets. When JSForm.EMPTY_FOUNDSET, the form will have an initially empty foundset.
The namedFoundset can be based on a global relation; in this case namedFoundset is the relation's name. You can also set the namedFoundset to a JSRelation object directly. It will tell this form to initially load a global relation based foundset. The global relation's foreign datasource must match the form's datasource. Do not use relations named "empty" or "separate" to avoid confusions.
Type String
Sample
The navigator (previously named "controller") that is used to control/navigate to the form. The navigator is shown at the left or at the right side of the form, depending on the page orientation.
The following options are available:
-none- - no navigator is assigned. DEFAULT - the Servoy default navigator is assigned. IGNORE - the navigator last assigned to a previous form. Custom - a custom navigator based on a selected form.
Type Object
Sample
This method is triggered when the form wants to hide; this will be called before onHide, and should be used to return if this form can be hidden or not. Before the form is really going to hide, this form and all the forms that this form is also showing in its ui hierarchy must allow the hide (return true in onBeforeHide - if present).
For example, when using onBeforeHide with showFormInDialog, the form will not close by clicking the dialog close box (X) if the main form in the dialog or any of the other visible forms in tabpanels/containers are nested in the main are returning false.
If the hide operation is allowed for all the forms that are in the affected visible hierarchy, then the onHide handler/method will get called on them as well afterwards.
So this handler (on each form) can be used to validate input in the main form and/or any nested visible forms - that are getting ready to hide.
Type JSMethod
Sample
Method that is executed when the data in one of the form's component is successfully changed and the onDataChange callback from the component does not exist or exists and returned true.
Type JSMethod
Sample
The method that is triggered when focus is gained by a component inside the form.
Type JSMethod
Sample
The method that gets triggered when focus is lost by a component inside the form.
Type JSMethod
Sample
This method is triggered when the form gets hidden.
Return value is DEPRECATED: false return value should no longer be used. In the past, if the onHide method returned false, the form hide could be prevented from happening in some cases (for example, when using onHide with showFormInDialog, the form will not close by clicking the dialog close box (X)). But that lead to unexpected situations when the form being hidden had visible nested children it it (tab panels, splits etc.) because only the current form would decide if hide could be denied, and all other forms, even if they returned false in their on-hide, would not be able to block the hide if this form allowed it. So those nested forms might think that they are still visible even though they are not.
Please use the new onBeforeHide method/handler instead if you want to prevent forms from hiding.
Type JSMethod
Sample
The method that is triggered when a form is loaded/reloaded from the repository; used to alter elements, set globals, hide toolbars, etc; onShow method can also be assigned.
NOTE 1: onShow should be used to access current foundset dataproviders; onLoad cannot be used because the foundset data is not loaded until after the form is loaded. Also calls to loadRecords() should be done in the onShow method and not in the onLoad method. If you call loadRecords() in the onShow method, you may want to set the namedFoundSet property of the form to 'empty' to prevent the first default form query.
NOTE 2: the onLoad event bubbles down, meaning that the onLoad is first fired on the parent then on a tab in a tabpanel (and in tab of that tab panels if you are 3 deep)
Type JSMethod
Sample
The method that is triggered when a user starts editing a record (for example by clicking into a cell of a table, or editing a field who's data-provider is from that record).
Type JSMethod
Sample
The method that is triggered when a record is being saved. A record is saved when a user clicks out of it (for example on an empty part of the layout or to another form).
When this event handler returns false (for example as part of a validation), the user cannot leave the record (change selected record).
Type JSMethod
Sample
The method that is triggered each time a record is selected.
NOTE 1: Data and Servoy tag values are returned when the onRecordSelection method is executed. NOTE 2: this will also fire if the selection goes to -1 because the foundset is cleared. So foundset.getSelectedRecord() can return null.
Type JSMethod
Sample
The method that gets triggered when resize occurs.
Type JSMethod
Sample
The method that is triggered EVERY TIME the form is displayed; an true argument will be passed to the method if this is the first time the form is displayed.
NOTE 1: onShow can be used to access current foundset dataproviders; onLoad cannot be used because the foundset data is not loaded until after the form is loaded. NOTE 2: the onShow event bubbles down, meaning that the onShow event of a form displayed in a tabPanel is fired after the onShow event of the parent.
Type JSMethod
Sample
The method that overrides the Servoy menu item Select > Sort. This property is automatically set to "DEFAULT" (no override) when the form is created.
Type JSMethod
Sample
The method that is triggered when a form is unloaded from the repository.
NOTE: Forms can be prevented from being removed from memory by referencing the form object in a global variable or inside an array inside a global variable. But do take care when using this technique. Forms take up memory and if too many forms are in memory and cannot be unloaded, there is a possibility of running out of memory.
Type JSMethod
Sample
Returns true if this form is in responsive mode
Type Boolean
Sample
Scrollbar options for the vertical and horizontal scrollbars. Each of the vertical and horizontal scrollbars can be configured to display all the time, to display only when needed or to never display.
Type Number
Sample
Returns the value of the form's selectionMode property. Selection mode is applied when necessary to the foundset used by the form (through it's multiSelect property), even if the foundset changes. If two or more forms with non-default and different selectionMode values share the same foundset, the visible one decides. If two or more non-visible forms with non-default and different selectionMode values share the same foundset, one of them (always the same from a set of forms) decides. If two or more visible forms with non-default and different selectionMode values share the same foundset, one of them (always the same from a set of forms) decides what the foundset's selectionMode should be.
Can be one of SELECTION_MODE_DEFAULT, SELECTION_MODE_SINGLE or SELECTION_MODE_MULTI.
Type Number
Sample
Get the server name used by this form.
Type String
Sample
The Cascading Style Sheet (CSS) class name applied to the form.
Type String
Sample
The [name of the table/SQL view].[the name of the database server connection] the form is based on.
Type String
Sample
The text that displays in the title bar of the form window. NOTE: Data tags and Servoy tags can be used as part of the title text.
Type String
Sample
When set, the form is transparent.
Type Boolean
Sample
Get or set the positioning (either use anchoring or use css position) for the form. This is only working for absolute layout forms in NGClient.
Type Boolean
Sample
If true then the min-height css property will be set for this form so it has a default minimum height.
Can return null so that the default system value should be used.
Type Boolean
Sample
If true then the min-with css property will be set for this form so it has a default minimum width
Can return null so that the default system value should be used.
Type Boolean
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
Retrieves the Body part of the form.
Returns: JSPart A JSPart instance corresponding to the Body part of the form.
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
Get a design-time property of a form.
Parameters
String key the property name
Returns: Object
Sample
Get the design-time properties of a form.
Returns: Array
Sample
Retrieves the Footer part of the form.
Returns: JSPart A JSPart instance corresponding to the Footer part of the form.
Sample
Retrieves the Header part of the form.
Returns: JSPart A JSPart instance corresponding to the Header part of 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
Gets an existing form method for the given name.
Parameters
String name the specified name of the method
Returns: JSMethod a JSMethod object (or null if the method with the specified name does not exist)
Sample
Returns all existing form methods for this form.
Returns: Array all form methods for the form
Sample
Returns all existing form methods for this form.
Parameters
Boolean returnInheritedElements true to also return the elements from the parent form
Returns: Array all form methods for the form
Sample
Gets a part of the form from the given type (see JSPart constants).
Parameters
Number type The type of the part to retrieve.
Returns: JSPart A JSPart instance representing the retrieved form part.
Sample
Gets a part of the form from the given type (see JSPart constants). Use the height if you want to get a specific LEADING_SUBSUMMARY or TRAILING_SUBSUMMARY.
Parameters
Number type The type of the part to retrieve.
Number height The height of the part to retrieve. Use this parameter when retrieving one of multiple Leading/Trailing Subsummary parts.
Returns: JSPart A JSPart instance representing the retrieved form part.
Sample
Returns the Y offset of a given part (see JSPart) of the form. This will include all the super forms parts if this form extends a form.
Parameters
Number type The type of the part whose Y offset will be returned.
Returns: Number A number holding the Y offset of the specified form part.
Sample
Returns the Y offset of a given part (see JSPart) of the form. This will include all the super forms parts if this form extends a form. Use the height parameter for targetting one of multiple subsummary parts.
Parameters
Number type The type of the part whose Y offset will be returned.
Number height The height of the part whose Y offset will be returned. This is used when one of multiple Leading/Trailing Sumsummary parts is retrieved.
Returns: Number A number holding the Y offset of the specified form part.
Sample
Gets all the parts from the form (not including the parts of the parent form), ordered by there height (lowerbound) property, from top == 0 to bottom.
Returns: Array An array of JSPart instances corresponding to the parts of the form.
Sample
Gets all the parts from the form (optionally also from the parent form), ordered by there height (lowerbound) property, from top == 0 to bottom.
Parameters
Boolean returnInheritedElements true to also return the parts from parent form
Returns: Array An array of JSPart instances corresponding to the parts of the form.
Sample
Returns the UUID of this form.
Returns: UUID
Sample
Gets an existing form variable for the given name.
Parameters
String name the specified name of the variable
Returns: JSVariable a JSVariable object
Sample
An array consisting of all form variables for this form.
Returns: Array an array of all variables on this form
Sample
An array consisting of all form variables for this form.
Parameters
Boolean returnInheritedElements true to also return the elements from the parent form
Returns: Array an array of all variables on this form
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
Creates a new Footer part on the form.
Parameters
Number height The height of the new part
Returns: JSPart A JSFooter instance corresponding to the newly created Footer form part.
Sample
Creates a new Header part on the form.
Parameters
Number height The height of the new part
Returns: JSPart A JSPart instance corresponding to the newly created Header form part.
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 form JSMethod - based on the specified code.
Parameters
String code the specified code for the new method
Returns: JSMethod a new JSMethod object for this form
Sample
Creates a new part on the form. The type of the new part (use one of the JSPart constants) and its height must be specified.
Parameters
Returns: JSPart A JSPart instance corresponding to the newly created form part.
Sample
Creates a new Title Header part on the form.
Parameters
Number height The height of the new part
Returns: JSPart A JSPart instance corresponding to the newly created Title Header form part.
Sample
Creates a new form JSVariable - based on the name of the variable object and the number type, uses the SolutionModel JSVariable constants.
Parameters
String name the specified name of the variable
Number type the specified type of the variable (see Solution Model -> JSVariable node constants)
Returns: JSVariable a JSVariable object
Sample
Creates a new form JSVariable - based on the name of the variable object , the type and it's default value , uses the SolutionModel JSVariable constants. This method does not require the form to be destroyed and recreated. Use this method if you want to change the form's model without destroying the runtime form**
Parameters
String name the specified name of the variable
Number type the specified type of the variable (see Solution Model -> JSVariable node constants)
String defaultValue the default value as a javascript expression string
Returns: JSVariable a JSVariable object
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 a form. You must set location/dimension or css position afterwards
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
Set a design-time property of a form. Value should be primitive data (string, boolean or number). Complex values should be stringified before call.
Parameters
Returns: Object
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
Clear a design-time property of a form.
Parameters
String key the property name
Returns: Object
Sample
Removes a form JSMethod - based on the specified code.
Parameters
String name the specified name of the method
Returns: Boolean true if method was removed successfully , false otherwise
Sample
Removes a JSPart of the given type.
Parameters
Number type The type of the part that should be removed.
Returns: Boolean True if the part is successfully removed, false otherwise.
Sample
Removes a JSPart of the given type. The height parameter is for removing one of multiple subsummary parts.
Parameters
Number type The type of the part that should be removed.
Number height The height of the part that should be removed. This parameter is for removing one of multiple Leading/Trailing Subsummary parts.
Returns: Boolean True if the part is successfully removed, false otherwise.
Sample
Removes a form JSVariable - based on the name of the variable object.
Parameters
String name the specified name of the variable
Returns: Boolean true if removed, false otherwise (ex: no var with that name)
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
Type | Name | Summary |
---|---|---|
Constant used for form namedFoundset property.
Constant used for form selectionMode property.
Constant used for form selectionMode property.
Constant used for form selectionMode property.
Constant used for form namedFoundset property.
The names of the database server and table that this form is linked to.
Get or set the encapsulation level for the form.
A JSForm instance representing the super form of this form, if this form has a super form.
The default sort order only when the form loads.
The height of the form in pixels.
The width of the form in pixels.
The name of the form.
Property that tells the form to use a named foundset instead of the default foundset.
The navigator (previously named "controller") that is used to control/navigate to the form.
This method is triggered when the form wants to hide; this will be called before onHide, and should be used to return if this form can be hidden or not.
Method that is executed when the data in one of the form's component is successfully changed and the onDataChange callback from the component does not exist or exists and returned true.
The method that is triggered when focus is gained by a component inside the form.
The method that gets triggered when focus is lost by a component inside the form.
This method is triggered when the form gets hidden.
The method that is triggered when a form is loaded/reloaded from the repository; used to alter elements, set globals, hide toolbars, etc; onShow method can also be assigned.
The method that is triggered when a user starts editing a record (for example by clicking into a cell of a table, or editing a field who's data-provider is from that record).
The method that is triggered when a record is being saved.
The method that is triggered each time a record is selected.
The method that gets triggered when resize occurs.
The method that is triggered EVERY TIME the form is displayed; an true argument will be passed to the method if this is the first time the form is displayed.
The method that overrides the Servoy menu item Select > Sort.
The method that is triggered when a form is unloaded from the repository.
Returns true if this form is in responsive mode
Scrollbar options for the vertical and horizontal scrollbars.
Returns the value of the form's selectionMode property.
Get the server name used by this form.
The Cascading Style Sheet (CSS) class name applied to the form.
The [name of the table/SQL view].
The text that displays in the title bar of the form window.
When set, the form is transparent.
Get or set the positioning (either use anchoring or use css position) for the form.
If true then the min-height css property will be set for this form so it has a default minimum height.
If true then the min-with css property will be set for this form so it has a default minimum width Can return null so that the default system value should be used.
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
Retrieves the Body part of the form.
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.
Get a design-time property of a form.
Get the design-time properties of a form.
Retrieves the Footer part of the form.
Retrieves the Header part of the form.
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
Gets an existing form method for the given name.
Returns all existing form methods for this form.
Returns all existing form methods for this form.
Gets a part of the form from the given type (see JSPart constants).
Gets a part of the form from the given type (see JSPart constants).
Returns the Y offset of a given part (see JSPart) of the form.
Returns the Y offset of a given part (see JSPart) of the form.
Gets all the parts from the form (not including the parts of the parent form), ordered by there height (lowerbound) property, from top == 0 to bottom.
Gets all the parts from the form (optionally also from the parent form), ordered by there height (lowerbound) property, from top == 0 to bottom.
Returns the UUID of this form.
Gets an existing form variable for the given name.
An array consisting of all form variables for this form.
An array consisting of all form variables for this form.
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.
Creates a new Footer part on the form.
Creates a new Header part on the form.
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 form JSMethod - based on the specified code.
Creates a new part on the form.
Creates a new Title Header part on the form.
Creates a new form JSVariable - based on the name of the variable object and the number type, uses the SolutionModel JSVariable constants.
Creates a new form JSVariable - based on the name of the variable object , the type and it's default value , uses the SolutionModel JSVariable constants.
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 a form.
Creates a new JSWebComponent (spec based component) object on the RESPONSIVE form.
Creates a new JSWebComponent (spec based component) object on the form.
Set a design-time property of a form.
Removes a component (JSLabel, JSButton, JSField, JSPortal, JSBean, JSTabpanel, JSWebComponent) that has the given name.
Clear a design-time property of a form.
Removes a form JSMethod - based on the specified code.
Removes a JSPart of the given type.
Removes a JSPart of the given type.
Removes a form JSVariable - based on the name of the variable object.
Removes a JSWebComponent that has the specified name.