Kendo-ui-core: Cascading not working when filtering is enabled

Created on 15 Jun 2016  路  4Comments  路  Source: telerik/kendo-ui-core

Having cascading dropdowns, if the dropdown has filtering enabled and you select an item, the next dropdown is not activated.
Browsers: Internet Explorer, Older versions of FireFox (45.0.2).
Bug Introduced in 2016 R2 SP1.
Demo reproducing the problem: http://dojo.telerik.com/ogaRA/2
Reported in:
Ticket ID: 1042747
Ticket ID: 1053473
Ticket ID: 1056922

Bug DropDownList Medium

Most helpful comment

Hi LorenDorez - there is a work around.
You can force the cascade child to reload correct data by resetting its datasource in the change event of the cascade parent.

In the "parent" cascading drop down's change event, add two lines:

var childWidget = $("#ChildDropDownId").data("kendoDropDownList");
 childWidget.setDataSource(childWidget.dataSource);

All 4 comments

We will schedule the fix for Q3 2016 (tentatively). If it is not resolved in the next official release, then we will postpone it for the first service pack.

@ggkrustev Is there a work around we can apply right now? I have a few systems that are live that use this feature.

Hi LorenDorez - there is a work around.
You can force the cascade child to reload correct data by resetting its datasource in the change event of the cascade parent.

In the "parent" cascading drop down's change event, add two lines:

var childWidget = $("#ChildDropDownId").data("kendoDropDownList");
 childWidget.setDataSource(childWidget.dataSource);

@jmead1

Thanks that appears to get me buy until the new Update Release

Was this page helpful?
0 / 5 - 0 ratings