简体   繁体   中英

How to get the Selected Data Items from KendoDropDowntree when checkboxes is enabled?

I am using kendo dropdowntree with checkboxes enabled. I need to get the entire data item of the selected nodes when the change is triggered. Currently, I'm getting only the Value field of the selected Items. How to get the entire Item?

<script>
$("#dropdowntree").kendoDropDownTree({
 dataSource: [{ text: "item1", value: 1 }, { text: "item2", value: 2 },{ text: "item3", value: 3 }],
 checkboxes: true,
 change: function(e) {
   var value = this.value();
   // Here I need the checked dataItems as full objects, instead of just values
 }
});
</script>

Unfortunately it does not appear as though Kendo exposes the selected dataItems, so you will need to do it manually.

The parameter e exposes the widget that triggered the event via e.sender . From there you can filter the widget's dataSource by the value returned by this.value .

Take a look at this example:

change: function(e) {
  var value = this.value();
  var dataSource = e.sender.dataSource;
  var dataItems = e.sender.dataSource.data().filter(dataItem => value.indexOf(dataItem.value) > -1);
  console.log(dataItems);
}

Fiddle: https://dojo.telerik.com/eKaFojav

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM