Hello, I have this scenario. The WHDG has a dataset as a datasource which is refilled by the DB at each postback. The control is Ajaxenabled and is not inside an update panel. Viewstate for Ajax and data are set to false. The WHDG purpose in the screen is to perform CRUD operations handling the control's events. Right now my problem is that I get the error "Server does not respond" in any action that requires an ajax postback to the server. That is: update, add, delete, etc. However, this is not hte case when I work locally or when the network traffic at the intranet server is fast; that is, after 17:00. So, it seems that there is some time out triggering somewhere. I have tried to set the timeout for the control as big as possible by using: grid._callbackManager.setTimeout(600000); but, I still receive the message after 20 secs. It does not even show the ajax spinning indicator at some times.
Any idea why this is happening and how effectively prevent the control to stop the postback process?
Thanks
This is working only for outer grid, Can you please let me know inner grid.
I have three level architecture and having paging at all level when I click on pageindex for parent I don't get server time out issue but when I am doing inner one child I am still facing the same issue. It waits for only 20 seconds for inner grid but for outer grid it waits for 60 seconds.
Please help.
Waiting for your favourable reply
Thanks.
The resutl is positive. This keeps the setting in place for 60. secs. between postbacks
Hi jwquiroz,
Please let me know if you need further assistance.
Best Regards,
Petar IvanovDeveloper Support EngineerInfragistics, Inc.http://ko.infragistics.com/support
Hi,
Use the ajax response client event and set the timeout there too.
regards,David Young
Ok, it seems I talked too fast on this issue. The problem still persists but with a variant. The setTimeout effectively delays the postback time of the control BUT it only does it at the first attempt. That is, after the first successful postback to the server, the control loses its Timeout settings and returns to the previous 20 sec limit. I am handling page onload event and WHDG client event grid initialize. Both events are triggered at the first page load but none of them fires when the control triggers its postback, queries the db, rebinds, etc. So, any ideas on how can persist this timeout setting within postback trips?
THanks!