Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
// 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();
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();