Hi there,
We have a page with a WebTab control on it, and some of the tabs use long running methods. We want to be able to disable the "Server does not respond" message completely, but have been unable to do so. I've tried setting the timeout of the callbackmanager during the initialize event, but get presented with an error saying that the callbackmanager is null.
Any ideas?
I get this:
Line: 422Error: Unable to get property '_callbackManager' of undefined or null reference
using this:
function setTimeout() { ig_controls.WebTab1._callbackManager.setTimeout(60000); }
Hello Alex,
You can handle Initialize client event of the WebTab control and there to use this approach.
<ClientEvents Initialize="WebTab1_Initialize" />
Thanks for the response.
I did see that thread, but couldn't understand where I'm meant to put that code. Could you give me an example?
Thank you for your question!
There is no way to "Disable" the message, because this message means that either the server is stuck in a loop or the server is still processing the request, and we should handle these scenarios. My suggestion is to increase the time which is needed to process your data (from the long running methods) and to see if the error is caused by insufficient time or infinitive loop. Follow the suggestions from this thread and let me know about the results. Our WebTab control also have "_callbackManager".
http://ko.infragistics.com/community/forums/t/61701.aspx
Looking forward to hearing from you.