JavaScript UI Libraries & Blazor Components Suite – Smart UI › Forums › General Discussions › Combobox set value error
Tagged: combobox component
Unable set value combobox with number, error actually Numher expected string since update methode can receive any value, confused
cboUser.value=1; will generate error
how can i update combobox value with integer? why not recive any value?
Hi Joko,
The type of the ‘value’ is expected to be String. You will see a console log message that the Type validation has failed, because a String value is expected. You can use ‘1’ instead of 1.
Regards, Markov