Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted on Feb 13, 2007 15:37
open dhtmlx forum
In the xml formation – I need to attach 2 datas for the node.For ex : <tree id=”text”><t...

In the xml formation – I need to attach 2 datas for the node.

For ex :

<tree id=”text”><tree id=”1”><userdata name=”folder”>0</userdata></tree></tree>

Here I attach a single data using userdata tag.I need to attach other data also for that node.So suggest me how to do that.

Answer posted on Feb 13, 2007 15:41

You can add any number of user data tags inside item tag.

So, the next will be correct:
            <tree>
            <item id="1">
                        <userdata name="folder">0</data>

                        <userdata name="access">1</data>
                            ...
                        <userdata name="nnn">xxx</data>

            </item>
            </tree>

Answer posted by Andrei (Support) on Nov 30, 2014 07:47

If you haven't found the needed information there and still looking for a solution, you will find the additional help checking ajax toolkit grid and recurring events calendar.