| Page 1 of 1 | [ 2 posts ] |
|
When I use Y.IO like this:
Code: var editBaseFastReport = function() { var configuration = { on: { complete: function(o) { var data = Y.JSON.parse(o.data.responseText); alert(o.data.responseText); if (data.Active == false || data.Status == 3 || data.Status == 5) { alert(data.Message); return; } showEditFastReportPanel(data.Year, data.Status); } } }; var io = new Y.IO({ emitFacade: true, bubbles: true }); io.send('../ParkLogic/FastReportActivated', configuration); }; Realy troubles me, for with Firefox this functions OK, but with IE(7),there is a strange problem that the first call to this function will do correct, and when call this function again, this io.send didn't realy do send message to server, just returned data last time received. I write this way (new Y.IO) instead of using Y.IO.send for I think Y.IO events may have problems for different io request called in the same time. Who knows how to handle this problem? |
|
Resolved with set all IO method to POST
IE Get method uses cache data most times |
| Page 1 of 1 | [ 2 posts ] |
| You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum |
© 2006-2013 Yahoo! Inc. All rights reserved.
All code on this site is licensed under the BSD License unless stated otherwise.
About This Site · Security Contact Info
Powered by phpBB® Forum Software © phpBB Group