Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI/UX Tools
CMS
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();