DO NOT EDIT THE CONTENT OF THIS PAGE DIRECTLY (EXCEPT INSIDE THE DIV BELOW WITH ID=DESCRIPTION), UNLESS YOU KNOW WHAT YOU'RE DOING.
THE STRUCTURE OF THE CONTENT IS VITAL IN BEING ABLE TO AUTO UPDATE THE CONTENT THROUGH THE DOC GENERATOR.



Property Summary
RuntimeForm
_super
Provides access to the methods of the parent of this form.
controller
controller
Get the controller of the form.
elements
elements
Get an array with the elements in the form.
JSFoundSet
foundset
Get the foundset of the form.



Property Details

_super

Provides access to the methods of the parent of this form.

Returns

RuntimeForm

Sample

forms.customer._super.some_method();
 

controller

Get the controller of the form.

Returns

controller

Sample

forms.customer.controller.enabled = !forms.customer.controller.enabled;
 

elements

Get an array with the elements in the form.

Returns

elements

Sample

var elems = forms.customer.elements;
application.output("This form has " + elems.length + " named elements.")
for (var i=0; i<elems.length; i++)
	application.output(elems[i].getName());
 

foundset

Get the foundset of the form.

Returns

JSFoundSet

Sample

application.output("selected index in form foundset: " + forms.customer.foundset.getSelectedIndex());