Hi I have this sentence

$g->addButton('')->set('NEW ACTIVITY')->js('click')->univ()->redirect('newactivity');

Is it possible to call the "redirect" method and passing parameters via $_GET ? so in the page "newactivity" I can ask for $_GET['something'] ?

Something like this

$g->addButton('')->set('NEW ACTIVITY')->js('click')->univ()->redirect('newactivity?id=1'); (this doesn't work)

or

   $g->addButton('')->set('NEW ACTIVITY')->js('click')->univ()->redirect('newactivity','id=1');

Thanks

link|improve this question

Could be maybe using stickyget ? – AJM.MARTINEZ Sep 10 '11 at 19:29
Hi, StickyGET is the answer !!! Thanks anyway. Alejandro – AJM.MARTINEZ Sep 10 '11 at 20:03
just curious, why do you use addButton('') and then set the label right after instead of specifying label to addButton directly? – romaninsh Sep 14 '11 at 13:05
feedback

2 Answers

up vote 1 down vote accepted

What you need is to properly build destination URL.

http://agiletoolkit.org/learn/understand/page/link

->univ()->redirect($this->api->getDestinationURL('newactivity',array('id'=>1)));

using stickyGET will affect ALL the urls you are going to produce form this point on. So if you add 2 links, each of them would be passing ID.

stickyGET is better if you need to pass argument which was already passed through GET, such as

array('id'=>$_GET['id']);
link|improve this answer
wow, now I understand the difference. Very thanks Roman. – AJM.MARTINEZ Sep 12 '11 at 21:53
feedback

Here is a place where other ATK4 Developers chat too, perhaps another resource for your ATK4 Q's. http://chat.stackoverflow.com/rooms/2966/agile-toolkit-atk4

link|improve this answer
asking questions here is better :) reputation ... mmm.. and it's easier for others to find them. – romaninsh Sep 11 '11 at 15:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.