Search Results

0
votes

How to get progress from XMLHttpRequest

One solution is still possible without any browser support: Divide your file into, say, 10 chunks. Make AJAX uploads of all those chunks sequentially (using callback …
0
votes

Best Way to Organize an ExtJS Project

When starting new big project, I decided to make it modular. Usually, in big projects not all modules are used by a particular user, so I load them on demand. F.e., if a project would have 50+ modu …
2
votes

Minimum time between subsequent AJAX calls

We have a different solution for AJAX polling in our chat: The request is sent to the server and polls for the data on the server side in cycle with very short delay intervals (like …
3
votes

How do I test for an empty Javascript object from JSON?

1) Just a workaround. Can your server generate some special property in case of no data? For example: var a = {empty:true}; Then you can easily check it in your AJAX ca …
0
votes

JavaScript UpdatePanel: Stop when Inactive

What's about taking advantage of current window object's 'mousemove' event? If mouse has been moved, set the timer for 1 min or so, and deactivate event. Repeat this cycle using setInterval(). …
0
votes

ExtJs Cascading-Combos Issue

Call combo-2.store.clearFilter(); in first combo selection handler to clear second combo internal filter before you updating it. …
0
votes

Problems using window.opener

Try following: parent.window.updateLayer(); in a separate <script> tag. I'm not quite sure whether it works with both src=some.js and i …
1
vote

Why HourGlass not working with synchronous AJAX request in Google Chrome?

Try to assign: var st = document.body.style; and then refer to st in both functions. This could be a scope issue in AJAX callback function. ED …
0
votes

Join 2 ‘threads’ in javascript

Something like this (schematic): registerThread() { counter++; } unregisterThread() { if (--counter == 0) fireEvent('some_user_event"); } eventHandler_for_some_user_event() { …
1
vote

Ext.Ajax.request callbacks never called when isUpload is true.

As soon as I remove it, the callback is called but the file is not uploaded to the client. Setting isUpload to true means you are gonna to uplo …
1
vote

Ext.Ajax.request callbacks never called when isUpload is true.

This is an excerpt from Ext.Ajax.request documentation: isUpload : Boolean (Optional) True if the form object is a file upload (will usually be automatically …