$setValue

called each time when component need to set value in related html input

void $setValue(string value);
valuestringnew value for the input

Example

input.$setValue("new value");

Details

Not purposed for direct calls

Can be redefined in a custom view. Is called only when component was rendered for sure (and components html is ready and accessible).

Back to top