or
Hi,
I started to play with KendoUI and it seems to be pretty amazing. However, I’m having a hard time to achieve a simple scenario:
For example, how could I place a DropDownList “Cities” that is filtered by another DropDownList “States” in a way that the “Cities” DataSource only queries the server after the selection of “State”?
I saw the filter feature, but it seems to me that you need to query all the data and filters it on the client side. Is that right?
Thanks!
Gabriel Mello
$("#link-window").kendoWindow({ draggable: false, resizable: false, visible: false, modal: true, animation: "false", width: "300px", height: "100px", actions: ["Close"] });$("#link-window").kendoWindow({ draggable: false, resizable: false, visible: false, modal: true, animation: false, width: "300px", height: "100px", actions: ["Close"] });$("#mediaitems").kendoGrid({ dataSource: data.mediaitems, scrollable: true, sortable: true, pageable: false, databound: onKendoGrid_DataBound, columns: [ { field: "rating", title: "", width: "100px" }, { field: "title", title: "Title" }, { field: "speaker", title: "Speaker" }, { field: "date", title: "Created", width: "200px", template: '<#= kendo.toString(date,"dd MMMM yyyy") #>' } ] });