Skip to content
Snippets Groups Projects
Verified Commit 2955e173 authored by Kevin Cristiano's avatar Kevin Cristiano :earth_americas: Committed by Kevin Cristiano
Browse files

Fix Paging on Export to Excel

parent 1e0c99ea
No related branches found
No related tags found
No related merge requests found
......@@ -2810,6 +2810,11 @@ WHERE cg.extends IN ('" . implode("','", $this->_customGroupExtends) . "') AND
$this->_absoluteUrl = TRUE;
$this->addPaging = FALSE;
}
elseif ($this->_outputMode == 'excel2007') {
$printOnly = TRUE;
$this->_absoluteUrl = TRUE;
$this->addPaging = FALSE;
}
elseif ($this->_outputMode == 'group') {
$this->assign('outputMode', 'group');
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment