Hello, all.
I have a datagrid that works great, then when I click the EDIT button I open up a dialog box where I put another datagrid with some properties for the selected row, when I hit the SAVE button I want to know which row I was editing but it looks like I have no access to it.
Here's how I initialize my datagrid:
$( '#my-second-dg' ).edatagrid({
title: 'Role Permissions',
url: 'get_items_list.php&id=' + paramId,
...... // more parameters here
});
So, I set paramId with the row id from my main datagrid, but when I initialize my second datagrid paramId is empty.
Anybody knows how can I achieve that?