Seems like a simple issue but I can't find the solution.
I have an MVCGrid using an Expander column linked to an MVCForm. I can apply the update easily through the form but I need to refresh MVCGrid after the update. In this case, I am displaying PhysCity in MVCgrid, updating it via the MVCForm and I want that change do be displayed back to the MVCGrid.
Thanks!
Here is what I have:
<?php
class page_cview extends Page {
function initMainPage(){
if(!$this->api->auth->isLoggedIn())$this->api->redirect('/');
$g=$this->add('MVCGrid');
$g->setModel('customer_cv',array('custname','Name','PhysAddr1','PhysCity','PhysState'));
$g->addColumn('expander','details','View/Update');
}
function page_details(){
//var_dump($_GET);
$f=$this->add('MVCform');
$f->setModel('customer_cv')
->loadData($_GET['id']);
$f->addSubmit("Update");
if($f->isSubmitted()){
$f->update();
$this->js()->univ()->successMessage('Saved')->closeExpander()->execute();
}
}
}