/**
  * method show()
  * Shows the page
  */
 function show()
 {
     // check if the datagrid is already loaded
     if (!$this->loaded) {
         $this->onReload(func_get_arg(0));
     }
     parent::show();
 }
 /**
  * method show()
  * Shows the page
  */
 function show()
 {
     // check if the datagrid is already loaded
     if (!$this->loaded and (!isset($_GET['method']) or $_GET['method'] !== 'onReload')) {
         $this->onReload(func_get_arg(0));
     }
     parent::show();
 }
Example #3
0
 function show()
 {
     $this->onReload();
     parent::show();
 }
Example #4
0
 public function show()
 {
     if (!$this->loaded) {
         $this->onReload();
     }
     parent::show();
 }
Example #5
0
 /**
  * method show()
  * Shows the page
  */
 function show()
 {
     // checa se o datagrid ja está carregado
     if (!$this->loaded) {
         $this->onReload(func_get_arg(0));
     }
     parent::show();
 }
Example #6
0
 /**
  * method show()
  * Exibe a pagina
  */
 function show()
 {
     // checa se o datagrid ja foi preenchido
     if (!$this->loaded and (!isset($_GET['method']) or $_GET['method'] !== 'onReload')) {
         $this->onReload(func_get_arg(0));
     }
     parent::show();
 }
Example #7
0
 public function show()
 {
     if (!$this->loaded and (!isset($_GET['method']) or $_GET['method'] !== 'onReload')) {
         $this->onReload(func_get_arg(0));
     }
     parent::show();
 }