addColumn('no', 'no'); $this->addColumn('text', 'title', array('title' => 'Title')); $this->addColumn('date', 'startDate', array('title' => 'Date')); $this->addColumn('time', '_time', array('title' => 'Time', 'template' => 'Event/Committee/cells/time.tpl')); $this->addColumn('text', 'location', array('title' => 'Location')); $this->addColumn('link_enum', 'show', array('title' => 'Show', 'values' => $this->_yesNoArray)); $this->_addOptionsColumn(); return parent::_initColumns(); } protected function _addOptionsColumn() { $this->addColumn('options', 'options'); return $this; } }