Inserts a new instance of a subform
or subform set into a form.
SyntaxReference_Syntax.insertInstance( INTEGER param1 [, BOOLEAN param2 ] )
Parameters
param1
|
An integer specifying the zero-indexed position
to insert the instance within a set of instances.
|
param2
(optional)
|
A Boolean value indicating if data must
be merged with the new subform instance.
true | 1 (JavaScript)
or 1 (FormCalc)
Merges the new subform instance with the available data.
false | 0 (JavaScript) or 0 (FormCalc)
The new subform instance is not merged with data.
|
ReturnsAn
object representing the new instance of the subform or subform set.
JavaScriptSubform1.instanceManager.insertInstance(3, 0);
FormCalcSubform1.instanceManager.insertInstance(3, 0)
|
|
|