Skip to content

Commit

Permalink
Update tlbExcelView.php
Browse files Browse the repository at this point in the history
Fix: Set refresh parameter to true, in order to make the pagination=false setting to be re-considered after being set.
  • Loading branch information
gabrieljenik committed Apr 3, 2014
1 parent 4c505d7 commit d2bd554
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tlbExcelView.php
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ public function renderBody()
//if needed disable paging to export all data
$this->dataProvider->pagination = false;
}
$data = $this->dataProvider->getData();
$data = $this->dataProvider->getData(true);
$n = count($data);

if ($n > 0) {
Expand Down

0 comments on commit d2bd554

Please sign in to comment.