Phone API Reference - UI Extended - genericForm.getInputWidget
genericForm.getInputWidget
Description
Returns the input object.
Basic Example:Â
var obj = genericForm.getInputWidget(parameters); |
Parameters
Name | Required | Type | Default | Description |
---|---|---|---|---|
setting | Yes | string | Â | Unique identifier used in the 'inputs' array when the genericForm.show() method is called. |
Examples
getInputWidget of 'sample_selectInput' and focus on it.
//in the example below, this gives focus to the 'sample_selectInput' input
var selectObj = genericForm.getInputWidget({'setting' : 'sample_selectInput'});
selectObj.takeFocus(); |
Â