This question is locked. New answers and comments are not allowed.
I used the Telerik MVC Tree View to Display the N-Level Self Referencing Hierarchy.
I have 3 queries for display of tree view.
a)I want to send(post) the full tree view list of data to the controller to process for database operations.
b)I have some extra parameters to be added as hidden parameters along with the item.value,item.Text values for each node.
Ex: item.Text="Level-0"
item.Value="1"
<input type="hidden" name="parentid" value="1" />
<input type="hidden" name="desc" value="Test" />
i want to append the hidden fields like above for each node and retrieve the same along with the Model list in controller to procees the data into db.
c) I am using the drag and drop feature of Treeview display.Is there any way to send all the modifed dragged items at once to controller to process the data instead of one by one.Like how the batch edit feature works
Please help me to get a way to fix those cases.
I have 3 queries for display of tree view.
a)I want to send(post) the full tree view list of data to the controller to process for database operations.
b)I have some extra parameters to be added as hidden parameters along with the item.value,item.Text values for each node.
Ex: item.Text="Level-0"
item.Value="1"
<input type="hidden" name="parentid" value="1" />
<input type="hidden" name="desc" value="Test" />
i want to append the hidden fields like above for each node and retrieve the same along with the Model list in controller to procees the data into db.
c) I am using the drag and drop feature of Treeview display.Is there any way to send all the modifed dragged items at once to controller to process the data instead of one by one.Like how the batch edit feature works
Please help me to get a way to fix those cases.