nested subgrids

Questionsnested subgrids
Torin asked 12 months ago

i want to create three nested subgrids. each of the related tables as a unique id has a column called id.
So I gave an alias to the id column say detail_id
I set
$opt_pp[“subGrid”] = true;
$opt_pp[“subgridurl”] = “grid_price_subgrid_init.php”;
$opt_pp[“subgridparams”] = “detail_id”;

And the dependent subgrid (the one with grid_prices_subgrid_init.php) can’t read detail_id

Although:
if (!empty($_POST[“detail_id”]))
$_SESSION[“detail_id”] = $_POST[“detail_id”];
$detail_id = $_SESSION[“detail_id”];

I get sql error:
here’s an excerpt
WHERE project_id = GROUP BY employee

and the sql code looks like:
WHERE project_id = $detail_id GROUP BY employee

๐Ÿ™

What to do???
Torin

2 Answers
Torin answered 12 months ago

I will answer myself ๐Ÿ™‚
$opt_pp[“subgridparams”] = “detail_id”;
we read through
$detail_id = $_REQUEST[“detail_id”];
not via $_POST or $_SESSION
Now it is working!

Abu Ghufran Staff answered 12 months ago

Thanks for the update.

_________________________
Abu Ghufran - Dev Team
Grid 4 PHP Framework
 
Your Answer

11 + 5 =

Login with your Social Id:

OR, enter

Attach code here and paste link in question.
Attach screenshot here and paste link in question.



How useful was this discussion?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate it.

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?