Hi, I’m having problems in getting the data from the master to the detail grid. I followed all the examples but still non working. In the master grid I get the data from a sql-server query with a Group-by.
When I call the data by $id = $_GET[“ID”]; I Always get an empty field.
Any Idea where I can find the right solution ?
Thanks a lot.
Paolo
1 Answers
Hi,
If you are passing field “ID” (with caps) from master grid only then it should be available, like following.
$opt[“subgridparams”] = “ID”;
Otherwise, you can get master grid id by:
$id = $_GET[“rowid”];
Your Answer