getInputNode

gets the HTML element related to the component

HTMLElement getInputNode();
HTMLElementthe component HTML element

Example

var unit = $$('unit').getInputNode().value;

Related samples

Details

The method can be used to get the actual text value of the combo while the getValue() function will return the ID of the chosen option.

The same is true abour select and richselect.

See also
Back to top