Grid Export Times out / Doesn't export

Hi Guys,

using the new grid export function, if I have a relatively large data the export seems to time out, it creates a new window but the loading status of this window eventually finishes and I don’t get any prompt to open/save the file. If I do a smaller import it seems to work ok. I tried setting debug=true in the generate.php and the xml file seems to complete correctly with all the data, but the export just doesn’t work? I can send you the XML if you wish

thanks

This is expected behavior. It takes a lot of time to render big grid, serialize it and render all data at new window. If you have big grid and want save changes from it it’s better to save it at database.

i have the same problem.

is there any way to keep the generate.php loading until it finish to load all data?

i try to set its time out to 0, but unfortunately the scripts stop, at almost 10secs of loading,

It may be related to the PHP script life time
try to add to the start of generate.php

set_time_limit(60);

set_time_limit(0); //no time limit

i already do it, but still the loading time still finish at most 10 secs.

but in viewing of the grid table, all data are loaded.

mygrid.enableSmartRendering(false)

where could be the scripts stop??

tnx for quick response.