コード例 #1
0
 /**
  * Initializes the columns list
  */
 public function __construct()
 {
     $this->columns = new TCollection();
     $this->autoColumns = new TCollection();
     $this->items = new TDataGridItemCollection($this);
     parent::__construct();
     $this->setTagName('table');
 }
コード例 #2
0
 /**
  * Initializes the item list
  */
 public function __construct()
 {
     $this->items = new TDataListItemCollection($this);
     $this->separators = new TCollection();
     parent::__construct();
 }