1

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?

webelizer
  • 418
  • 2
  • 11

1 Answers1

1

Make those parameters sticky at the start of your page:

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

This parameter will be passed to sub-pages.

See also:

romaninsh
  • 10,606
  • 4
  • 50
  • 70
  • I didn't understand Romans! I have a grid with expander and each row must open an expander with links like: ?page=tickets&tid=1,?page=tickets&tid=2,?page=tickets&tid=999... how should I tell the expander to send that parameter to the ticket page? Thanks. – webelizer Sep 19 '13 at 06:05
  • 1
    ah, no grid already will pass you parameter which will match the table of your Grid's model. Simply pop var_dump($_GET) to discover. – romaninsh Sep 19 '13 at 07:19