webelizer
webelizer

Reputation: 418

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?

Upvotes: 1

Views: 138

Answers (1)

romaninsh
romaninsh

Reputation: 10664

Make those parameters sticky at the start of your page:

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

This parameter will be passed to sub-pages.

See also:

Upvotes: 1

Related Questions