Browse Source

Render gridview table footer after table body

tags/2.0.0-rc
ElisDN 11 years ago
parent
commit
1886877196
  1. 2
      framework/grid/GridView.php

2
framework/grid/GridView.php

@ -241,8 +241,8 @@ class GridView extends BaseListView
$this->renderCaption(),
$this->renderColumnGroup(),
$this->showHeader ? $this->renderTableHeader() : false,
$this->showFooter ? $this->renderTableFooter() : false,
$this->renderTableBody(),
$this->showFooter ? $this->renderTableFooter() : false,
]);
return Html::tag('table', implode("\n", $content), $this->tableOptions);

Loading…
Cancel
Save