Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

203
Views
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>
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

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

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!