This question is locked. New answers and comments are not allowed.
I bind my combobox client side. when i click it all the values are in there.
<%
= Html.Telerik().ComboBox()
.Name(
"SelectedWebshopTaal"
)
.HighlightFirstMatch(
true)
.Filterable(filtering =>
filtering.FilterMode(
AutoCompleteFilterMode
.Contains))
.DataBinding(binding => binding.Ajax()
.Select(
"_SelectedWebshopTaal"
, "Account").Cache(true))
%>
So i have no problems with that.
When I try to read the object I get an js error, and comboBoxTaal is null
I have done this before on other pages and no problem.
Am I missing something here?
var comboBoxTaal = $("#SelectedWebshopTaal").data("tComboBox");
Regards,
Gerard