Hi!
I use jqxtreegrid for show hierarchical data.
I use selection mode singe.
When I select one row with
$("#treegrid").on('rowSelect', function (event) {
i fill the form value from
var datarow = $("#treegrid").jqxTreeGrid('getSelection');
After the user save the form, I reload the treegrid again, and I want to select the selected row.
Is’it possible?
I read that I need selection mode custom to use api to set select row, but so I have lost the rowselect event, only I can use rowClick, and then I can’t get datarow element.
What is the solution If I want to select the prevoiusly selected row, and fill the form with data again?