Esempio n. 1
0
 /**
  * Clear actions row
  */
 public function delActions()
 {
     if ($this->actionsContainer) {
         foreach ($this->actionButtons as $key => $button) {
             parent::delField($button);
             unset($this->actionButtons[$key]);
         }
         $this->actionsContainer->clearChildren();
     }
 }