I have a page with a MVCGrid calling a modal form from external page:

$g1=$p->add('MVCGrid');
$g1->setModel('Student');
$g1->addButton('Add New') 
   ->js('click')
   ->univ()
   ->dialogURL('Add New', $this->api->getDestinationURL('newStudent'));

The external page has the form and works fine:

$f=$page->add('MVCForm');
$f->setModel('Student');
if($f->isSubmitted()){
    $f->update();
    $f->js()->univ()->closeDialog()->execute();
}

But after a new Student is added, the grid is not updated, how do I update it? Is this this the right way to do this? (I'm trying to have a similar funtion that the CRUD but only for Create.)

Thanks

link|improve this question

78% accept rate
feedback

1 Answer

up vote 0 down vote accepted

It's exactly the same as http://stackoverflow.com/a/8966784/204819

put the refresh code as 2nd argument to js() function, while using "null" as first.

link|improve this answer
I already tried that o that fiel, but now the window does not close. I can either close it or refresh the grid, but not both... – mcanedo Jan 23 at 22:36
it's explained here: agiletoolkit.org/learn/understand/chains/multi – romaninsh Jan 24 at 14:54
got it worked thanks! $this->js(null,$this->js()->_selector('.myreload')->trigger('myreload')) ->univ() ->closeDialog() ->successMessage('Actualizado') ->execute(); – mcanedo Jan 24 at 15:57
feedback

Your Answer

 
or
required, but never shown

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