Using jsTree (pre1.0_fix_1), I would like to obtain a list of id
's for all the checked items (or better, a JSON object with id
AND text of each checked item). I will then make an ajax call with this. Additionally, this should happen any time there is a state change of something getting checked or unchecked.
This is what I currently have:
$(function(){
n = $('#colors').jstree({
"plugins": ["themes", "html_data", "checkbox"]
}).bind("change_state.jstree", function(e, data){
console.log($('#colors').jstree('get_selected').attr('id'));
});
});
This is just returning 'colors', from the container'sid
: <div id="colors">
. I fished around the data
object, but didn't find it in there (perhaps I missed it?)