-
26 Apr 2012 12:31 AM #411
On Mozilla MDM, about XmlHTTPRequest, you can read:
Note: You may not use a timeout for synchronous requests with an owning window.
So a better work around could probably be to change the line (1009 in v4.0)
toCode:if(callback && callback.timeout){
Code:if(callback && callback.timeout && options.async){
-
26 Apr 2012 12:37 AM #412
resolved
resolved
in ext-basex.js 4.1 about line 1011
('timeout' in r) && (r.timeout = callback.timeout);
modified to :
(options.async) && ('timeout' in r) && (r.timeout = callback.timeout);
-
4 May 2012 6:10 AM #413"be dom-ready..."
Doug Hendricks
Maintaining ux: ManagedIFrame, MIF2 (FAQ, Wiki), ux.Media/Flash, AudioEvents, ux.Chart[Fusion,OFC,amChart], ext-basex.js/$JIT, Documentation Site.
Got Sencha licensing questions? Find out more here.
-
10 Aug 2012 2:30 PM #414
I'm working on a desktop app with extjs 3.2 (using basex for local file system access) and I'm having problems in IE9: when I reload repeatedly the page it crashes, this wasn't happening with IE8 and I haven't change my code. So, I believe that I have some sort of compatibility problem going on, I already tried to migrate to 3.4 (I would like to go foward with 4.x but I don't have the plugin to run my app locally yet... hope it will be soon). The problem is that with 3.4 I started to have issues with basex, when reloading the app doesn't crash but there's a lot of error messages from basex.
So the thing is, there's going to be another version of ext-basex adding compatibility with ie9? There's going to be/is something on extjs4.x to prevent from using this plugin and be able to run an app locally, without a webserver?
Thanks in advanced.


Reply With Quote



