Get custom text on client-side
Q:
ComboBox1.value() retrieves a blank value when the user types in a custom text. It works fine if the user selects a value. How can I get the value when the user types in custom text?
A:
To retrieve the custom text from the ComboBox you need to use the "text" client-side method:
ComboBox1.text();
|