示例#1
0
 /**
  * Shows the VBox
  */
 public function show()
 {
     $children = parent::get_children();
     if ($children) {
         foreach ($children as $child) {
             // show child object
             $child->show();
         }
     }
     parent::show_all();
 }
示例#2
0
 /**
  * Show the widget at the screen
  */
 public function show()
 {
     if (!$this->created) {
         $this->createModel();
     }
     $this->table_fields->show();
     parent::show_all();
 }