renderTableBody() public method

public renderTableBody ( )
コード例 #1
0
ファイル: GridView.php プロジェクト: pipekung/yii2-grid
 /**
  * Renders the table body.
  *
  * @return string the rendering result.
  */
 public function renderTableBody()
 {
     $content = parent::renderTableBody();
     if ($this->showPageSummary) {
         return $content . $this->renderPageSummary();
     }
     return $content;
 }