I have a ultra web combo (called category) which is databound to a data table of values (can be empty). how ever when trying to read the selected or entered value, it appears i have to read one of several values to find the selected/enetered value.
For example...
If Category.DataValue IsNot Nothing Then
ElseIf Category.DisplayValue IsNot Nothing Then
Else
End If
Found the solution.
var cbo = igcmbo_getComboById('<%=combo.ClientID %>'); var text = cbo.getInputBox().value;
My issue is similar but not same. I have an editable webcombo (7.1). I want to validate client side for an entry in the combo. User could either select a value or type-in a new value that is not part of the list.
It would be great if someone could let me know how to access this text user entered in the combo.
I'm able to get the value in server side by combo.Text, I tried getDisplayText, getText both didn't work. Any help would be greatly appreciated. Thx.
Hi,
We've just tried your suggestion and set the editable property to false:
No matter what value we set on the property ComboTypeAhead, the user can not search an entry in the list. It seems it is not possible to have the suggest-mode without the editable Property set to true, because as soon as you set it to false the input-field is disabled, so no entry (in our case for search) is possible.
Thanks for your help
Stefan