public function endToString() { $ret = ''; if ($this->rownum == 0 && isset($this->message)) { $ret = $this->prepareRow(new CCol($this->message, 'message')); $ret = $ret->toString(); } $ret .= $this->footer; $ret .= parent::endToString(); return $ret; }
public function endToString() { $ret = $this->footer; $ret .= '</tbody>'; $ret .= parent::endToString(); return $ret; }
public function endToString() { $this->form->addItem($this->getTable()); if ($this->show_buttons) { $this->form->addItem($this->getButtons()); } if ($this->navigator) { $this->form->addItem((new CDiv())->setId('scrollbar_cntr')); } if ($this->footer !== null) { $this->form->addItem($this->footer); } $ret = $this->form->toString(); $ret .= parent::endToString(); return $ret; }