If I'm using
<input id="LAYOUTID" />;
$("#LAYOUTID").kendoComboBox();
var comboboxItem = $("#LAYOUTID");
var ds = comboboxItem.data("kendoComboBox");
it is al working fine, i get a valid ds.
Hower if i use a different ID (a valid jquery and html ID), it is not working
<input id="struct:LAYOUTID" />;
$("#struct:LAYOUTID").kendoComboBox();
var comboboxItem = $("#struct:LAYOUTID");
var ds = comboboxItem.data("kendoComboBox");
I get no error, but ds is null and there is no combobox generated. As far as i can see, the problem is the ":" sign.
Is this an error, or are the valid characters different for Kendo. If so, which are valid characters (i would prefer to have some special characters)
Thanks,
Ivor
<input id="LAYOUTID" />;
$("#LAYOUTID").kendoComboBox();
var comboboxItem = $("#LAYOUTID");
var ds = comboboxItem.data("kendoComboBox");
it is al working fine, i get a valid ds.
Hower if i use a different ID (a valid jquery and html ID), it is not working
<input id="struct:LAYOUTID" />;
$("#struct:LAYOUTID").kendoComboBox();
var comboboxItem = $("#struct:LAYOUTID");
var ds = comboboxItem.data("kendoComboBox");
I get no error, but ds is null and there is no combobox generated. As far as i can see, the problem is the ":" sign.
Is this an error, or are the valid characters different for Kendo. If so, which are valid characters (i would prefer to have some special characters)
Thanks,
Ivor