atk4agiletoolkit

how to load a page with GET parameters in grid expander?


As you know we can load a Page in expander in this way:

 $g->addColumn('expander','tickets');

But in my situation, the Tickets page have some parameters like this:

?page=tickets&tid=1

how can I load this page with tid parameter?


Solution

  • Make those parameters sticky at the start of your page:

    $this->api->stickyGET('tid');
    

    This parameter will be passed to sub-pages.

    See also: