Get KoolPHP UI with 30% OFF!

grid is excporting to excel just the visible page :(

Abraham
How can i exprt full data not just the visible page??
i mean i have a grid wit paggin (like 10 pages of data) then i press the export button and i just get the first 10 rows which are displayes in the first row..
Posted Jul 28, 2016 Kool
Peter
Hi Abraham,
You set:
$grid->ExportSettings->IgnorePaging = true;
Posted Jul 29, 2016 Kool
Abraham
Excelent!!!! thanks.
Posted Aug 1, 2016 Kool
Abraham
hoo my, now i have a problem and dont know what happend..
i have this grid wich include certains fields depending on user choise, and when i hit the excel export button it results in a empty document.
the grid have 2736 rows but none of them comes to the excel file..!!!
the fileds on the grid chosen by the usere are stored in a list. when i press the excel button the list seems empty
$listboxItems = $GLOBALS["second_listbox"];
$listboxItems = $listboxItems->Items; //its null on the excel export phase.
how can i preserve second_listbox items during this phase ???
/***************************
*Solved
***************************/
My excel export button was out of the post form where the listbox was.. so i made just 1 from and now its working perfect..
Posted Aug 1, 2016 , edited Aug 1, 2016 Kool -