Posted 05 Jul 2012 Link to this post
// Gets the ComboBox var drop = $("#Parent").data("tComboBox"); // Reload the ComboBox data drop.reload(); Thanks in advance Mohammed Adel
// Reload the ComboBox data drop.reload();
Posted 06 Aug 2012 Link to this post
Are you using Ajax binding (.DataSource(ds => ds.Ajax().Read(r => r.Action("JsonAction", "Controller")))? If so you need to refresh the underlying dataSource object that feeds the DropDown like so:
// Get reference to Kendo DropDownList object
var
dropDownList = $(
'#Parent'
).data(
'kendoDropDownList'
);
// Read new data from server
dropDownList.dataSource.read();
// Refresh drop down list items
dropDownList.refresh();