how to get level wise data from jqxtreegrid for sending the view to controller in asp.net mvc ?
Hi vishnuvardhan278,
You could refer to the following tutorials that explained how to use jqxGrid in MVC application.
http://www.jqwidgets.com/jquery-widgets-documentation/documentation/asp.net-integration/asp.net-mvc5.htm
http://www.jqwidgets.com/jquery-widgets-documentation/documentation/asp.net-integration/asp.net-grid-crud.htm
For more information about jqxTreeGrid, please check this link.
https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtreegrid/jquery-treegrid-getting-started.htm
Best Regards,
Fei Han
Hi,
You can try something like this.
var allRows = $("#treeGrid").jqxTreeGrid('getRows');
This will return all the rows of your jqxTreeGrid.