Beispiel #1
0
 protected function getDataRows()
 {
     if (TreeView::EXPANDED === $this->mode) {
         if (NULL === $this->dataRows) {
             $this->dataRows = $this->dataSource->fetchAssoc($this->primaryKey);
         }
         return $this->dataRows;
     }
     return parent::getDataRows();
 }