Kendo data source data filtering based on cascading drop-down list of selected value

Hi

I am working on Kendo UI,can anyone provide the solution how to update Kendo grid datasource based on cascading drop-down list selected value.In Kendo demos I found cascading dropdownlists examples. 

demand:

 I have 3 dropdownlists,binding with 3 services,now I want to filter the grid data-source 

based on the selected value of the dropdown list.

+4
source share
1 answer
 Hai, In onchange event of thrid dropdownlist,you need to filter the grid datasource based on codition Change:filterGrid and a create function: function filterGrid() { dataSource.filter([ { field: "orders", operator: "equals", value: $("#OrderID").val() } ]); } 
+3
source

Source: https://habr.com/ru/post/1469211/


All Articles