We're using the RadTreeView to show a hierarchical structure.
Since our data does not follow the format required, (parentid, id, text), we are creating a datatable on the fly, adding values (and additional attributes) and binding. Now the user can add more information to the tree.
When the user is done, we want to access all the data from the tree, convert it to our format and save it back to the database.
The question is: can I access the datatable as it is? For every edit, I'm adding the required data to the datatable (using node attributes).
If not, what is the best way to get all the data out and write it in my required format?
Thanks in Advance.
Since our data does not follow the format required, (parentid, id, text), we are creating a datatable on the fly, adding values (and additional attributes) and binding. Now the user can add more information to the tree.
When the user is done, we want to access all the data from the tree, convert it to our format and save it back to the database.
The question is: can I access the datatable as it is? For every edit, I'm adding the required data to the datatable (using node attributes).
If not, what is the best way to get all the data out and write it in my required format?
Thanks in Advance.