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?

有帮助吗?

解决方案

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top