Hi,
What do you mean saying "Navigagtion"?
But if I understood your case correctly you can use formatValue
property.
If I need that a part of the table output was a link I do something like this:
"formatValue" => function ($value, $row) {
return "<a href='../tasks.php?project_Id=" . $row['project_Id'] . "'target=\"subreport\">$value</a>";
},
with $row
variable you can get access to all your data in the current row, I think project id must be in your data row so you can use it to pass project id to the subreport.
Or if you have project_Id
as a parameter from some input control you can use this parameter anywhere in your report including your navigation control.