Question

I'm using dynatree plugin but when I do:

print_r($_POST);

in the page where I receive the data I can't see Dynatree selected options? Why? How I can get this data in order to process it in my PHP script?

Was it helpful?

Solution

Ok, after found this topic and change a bit of code I made it to works. This is the result:

$(".btn").click(function() {
        var tree = $("#tree").dynatree("getTree");
        var selKeys = $.map(tree.getSelectedNodes(), function(node) {
            return node.data.key;
        })

        $("#selcs").val(selKeys);
});

Hope can help others

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top