TbExtendedGridView::renderContent PHP Метод

renderContent() публичный Метод

Renders grid content
public renderContent ( )
    public function renderContent()
    {
        parent::renderContent();
        $this->registerCustomClientScript();
    }

Usage Example

 public function renderContent()
 {
     if ($this->enablePageSizeDropdown) {
         if (!isset($this->summaryText)) {
             $this->summaryText = 'Displaying {start}-{end} of {count} result(s).';
         }
         $this->summaryText .= $this->renderPageSizeDropdown();
     }
     parent::renderContent();
 }