You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I have implemented kendo knockout multiselect to my project. But I can't able to figure out how to restrict the selection option.
below is my recent knockout kendo code
my earlier kendo code looks like this
$("#" + id).kendoMultiSelect({
placeholder: "Select Time Periods ...",
dataTextField: "TpDescription",
dataValueField: "TpTimeperiodId",
autoBind: true,
change: function (e) {
var id = this.element.attr("id");
competititveAnalysisViewModel.findGraphItem(id);
},
open: function (e) {
if (this.value().length == 1)
e.preventDefault(); // here i m restricting the selection. How to acheive by using knockout
},
dataSource: trailingTimePeriods
});
How to achive by using knockout kendo . Please help me out
Thanks,
Mahesh
The text was updated successfully, but these errors were encountered:
Hi,
I have implemented kendo knockout multiselect to my project. But I can't able to figure out how to restrict the selection option.
below is my recent knockout kendo code
my earlier kendo code looks like this
How to achive by using knockout kendo . Please help me out
Thanks,
Mahesh
The text was updated successfully, but these errors were encountered: