How might one get a list of checked checkboxes in a Kendo UI Web TreeView?
I can’t find this functionality anywhere in the API but I would think this would be a pretty basic operation..
How might one get a list of checked checkboxes in a Kendo UI Web
Share
There is actually no API method but you can get them easily with jQuery.
To get the checkbox selected inputs use
To get the checked container li elements use:
Once you have the li element you can pass it to the dataItem method of the TreeView and get the underlying model and thus its ID or other properties.