Thank you, but it does not work.
I try first on that way - on TreeGrid click I remember clicked ID (number) and after edit is finished (on onClose event I call this:
$('#members_tree').treegrid('select',current_row);
alert(current_row);
give me right number.
Here is treegrid declaration:
<table id="members_tree" class="easyui-treegrid" toolbar="#tb" fit="true" fitcolumns="true" rownumbers="true" url="json/members_tree.json" idField="id" treeField="firstlastname"
data-options="onClickRow:onClickMemberTreeRow">
<thead>
<tr>
<th field="select_id" hidden="true"></th>
<th field="id" hidden="true"></th>
<th field="firstlastname" width="600%">First and Last name</th>
<th field="email" width="100%">Email</th>
<th field="phone" width="100%">Phone</th>
<th field="cell" width="100%">Cell phone</th>
<th field="entrydate" width="100%">Entry date</th>
<th field="birthdate" width="100%">Date Of Birth</th>
<th field="note" width="100%">Note</th>
</tr>
</thead>
</table>
attached is FireBug error and my treeGrid
what I'm doing wrong?