SOT: EXT grid timeout

2014-06-14 Thread John M Bliss
Hi! So I added this code to increase our EXT grid timeout from 2.5 minutes to 10 minutes: Ext.onReady(function(){ Ext.Ajax.timeout = 60; }); So now, EXT grids will wait longer for CF to return the JSON to populate the grids. Works great under about 5 minutes. The problem is: *above* 5

Re: SOT: EXT grid timeout

2014-06-14 Thread Cameron Childress
On Sat, Jun 14, 2014 at 10:16 AM, John M Bliss wrote: So I added this code to increase our EXT grid timeout from 2.5 minutes to 10 minutes: Any ideas? I am not sure I would try to work with AJax data that took that long to return. You have so many variables with different browsers (with

Re: SOT: EXT grid timeout

2014-06-14 Thread Jon Clausen
How many records are returned to populate the grid? If itÂ’s taking 5+ minutes to complete, then the number of records, the table or query optimization is probably the more important issue.I would suggest the following: 1) Implement a paging solution with OFFSET/LIMIT - You can use AJAX to

Re: SOT: EXT grid timeout

2014-06-14 Thread John M Bliss
Confirmed: only happens in Firefox. Thanks, Cameron. On Sat, Jun 14, 2014 at 10:28 AM, Cameron Childress camer...@gmail.com wrote: On Sat, Jun 14, 2014 at 10:16 AM, John M Bliss wrote: So I added this code to increase our EXT grid timeout from 2.5 minutes to 10 minutes: Any ideas?