Ext.Js 1.0 Transaction Aborted Message keeps appearing. How to disable it?
I am using Ext.Js version 1.0 and I keep getting Transcation Aborted after 30 seconds of pressing a button. I want to completely disable timeout functionality of direct/ajax events. how do I acheieve 开发者_运维技巧it?
I have a Default.aspx page and two other pages.
Regards
You can increase the timeout functionality of ajax events. I am not sure if you can completely disable it. If you disable it, how will you handle error? Did you have a look at why you are getting the timeout?
You can definitely increase the timeout for the Ajax event using the timeout
property. Even the forms have the timeout property. You can set it in BasicForm
. But note that for ajax, the value for timeout is in milliseconds and for form, its in seconds.
I suggest you really look into solving the issue of getting the timeout rather than extending the timeout.
精彩评论