Hi,
I have Popup Editor , And On Popup Editor I have a Tabstrip with ID (Tab123) and Tab123 has a Multiselect (Ms123).
I want to do some operations with change event of Multiselect(Ms123). Below is how I have the set up for in Document ready
For some reason in debug mode I could see the change event doesn't fire.
Is it something different way we need to call $("#Ms123").kendoMultiSelect({}) in a popup editor/Tab strip or even when a Multiselect is set it up in a template kind of thing.
Thanks in Advance,
Chatra
I have Popup Editor , And On Popup Editor I have a Tabstrip with ID (Tab123) and Tab123 has a Multiselect (Ms123).
I want to do some operations with change event of Multiselect(Ms123). Below is how I have the set up for in Document ready
$(document).ready(function () {
$("#Ms123").kendoMultiSelect({
valuePrimitive: true,
dataTextField: "text",
dataValueField: "value",
change: function (e) {
blah blah blah....
}
});
}
For some reason in debug mode I could see the change event doesn't fire.
Is it something different way we need to call $("#Ms123").kendoMultiSelect({}) in a popup editor/Tab strip or even when a Multiselect is set it up in a template kind of thing.
Thanks in Advance,
Chatra