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.

Enter additional information related to this 'class' inside the {div} macro with 'id=description'


Property Summary
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
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());