Pergunta

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?

Foi útil?

Solução

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

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top