I'm looking for some help with dynatree plugin.

I need to transform the json coming from the server to make it dynatree compatible (I'm not allowed to do it on the server side),

This below apparently doesn't work:

                    initAjax: { 
                            url: '/admin/tenant/jsontree', 
                            data: { 
                                    tenantId: 1 
                            }, 
                            success: function(data) { 
                                    // do modifications to the data returned from server 
                                   // and return formatted data 
                            } 
                    } 

And I couldn't find a callback for it in the documentation. So my question is: is it possible to do that initial transformation with some callbacks or should I be looking for some other plugins?

Thank you in advance

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Have a look at 'Loading custom formats' in the docs:

http://wwwendt.de/tech/dynatree/doc/dynatree-doc.html

basically you can pass the standard $.ajax() options to initAjax(), such as dataFilter. (There is also a - yet undocumented - postProcess callback option.)

link|improve this answer
hey thanks, I tried that and it worked, but after realized that jstree suits my needs better. – user1139206 Feb 1 at 21:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.