Skip to content

Commit

Permalink
Fix #92: Bug fix for generating multiple rows in header/footer
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-v committed Oct 11, 2014
1 parent e32d8e0 commit a225bce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Version 2.0.0
4. (enh #83): Upgraded jQuery floatTheader plugin to latest version.
5. (bug #85, #87, #88): Enhance EditableColumn to capture keys of various data types
6. PSR 4 alias change
7. (bug #92): Bug fix for generating multiple rows in header/footer.

Version 1.9.0
=============
Expand Down
2 changes: 1 addition & 1 deletion GridView.php
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ protected function generateRows($data)
continue;
}
$rowOptions = ArrayHelper::getValue($row, 'options', []);
$rows = Html::beginTag('tr', $rowOptions);
$rows .= Html::beginTag('tr', $rowOptions);
foreach ($row['columns'] as $col) {
$colOptions = ArrayHelper::getValue($col, 'options', []);
$colContent = ArrayHelper::getValue($col, 'content', '');
Expand Down

0 comments on commit a225bce

Please sign in to comment.