Child pages
  • Forms
Skip to end of metadata
Go to start of metadata

Refresh page Mar 28, 2024 21:00

Supported Clients
SmartClient WebClient NGClient MobileClient

Property Summary
RuntimeForm [name] Get a form by name.
Number length Get the number of forms loaded into memory.

Property Details

[name]

Get a form by name.

Returns

Supported Clients

SmartClient,WebClient,NGClient,MobileClient

Sample

var allForms = solutionModel.getForms();
application.output("There are " + allForms.length + " forms.");
for (var i=0; i<allForms.length; i++) 
{
	var f = forms[allForms[i].name];
	application.output("Form " + allForms[i].name + " has selected index " + f.controller.getSelectedIndex());
}

length

Get the number of forms loaded into memory.

Returns

Supported Clients

SmartClient,WebClient,NGClient,MobileClient

Sample

application.output("Number of forms loaded into memory: " + forms.length);

  • No labels