Example #1
0
 public function loadExpandList()
 {
     $this->select('task.*, start, stop, CEIL(spent/60) as spent');
     $this->from('task');
     $this->leftJoin('timer', 'task.id=timer.task_id');
     return parent::loadList(false);
 }