Hello,
Is it possible to reach a page of the grid by an external link, for example : https://www.mysite.com/grid_1/page_11 ?
Thanks
3 Answers
Hello Abu,
I would just like to know if you have an answer for this question.
Thanks,
Hello,
You can set any querystring param, e.g. ‘p’ and pass it to grid option ‘page’.
Now accessing grid.php?p=2 will open page number 2.
$opt["page"] = $_GET["p"]; $g->set_options($opt);
Your Answer