Re: CF jQuery - How to delay ajax completion until images are processed...

2009-09-24 Thread Dave l
If you go back to what I keep telling you about multi-steps then it works like you want it to.. do something after the upload and then report it back to script because then you know it was done. ~| Want to reach the

Re: CF jQuery - How to delay ajax completion until images are processed...

2009-09-24 Thread Dave l
maybe this video will help, maybe not www.jamwerx.com/rick.mp4 ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

Re: CF jQuery - How to delay ajax completion until images are processed...

2009-09-24 Thread Tony Bentley
Ususally the steps are the following: 1.)user hits go 2.) a 'waiting' div pops up to prevent user from hitting anything while it processes 3.) coldfusion does all of the processing and sends back the response 4.) javascript keeps checking that image using ajax/coldfusion cffile to see if it

Re: CF jQuery - How to delay ajax completion until images are processed...

2009-09-23 Thread Raj Vijay
Rick I think the exact problem area I the code above is the call to the function fnGetRentalProperties(), which goes out to another cfc method and constructs HTML for display before all the data is finished processing. Have you tried invoking the fnGetRentalProperties() as a callback

RE: CF jQuery - How to delay ajax completion until images are processed...

2009-09-23 Thread Rick Faircloth
); $('.rentalPropertyAddResponseDialog').fadeIn(250); }); } -Original Message- From: James Holmes [mailto:james.hol...@gmail.com] Sent: Wednesday, September 23, 2009 12:06 AM To: cf-talk Subject: Re: CF jQuery - How to delay ajax completion until images are processed... async

RE: CF jQuery - How to delay ajax completion until images are processed...

2009-09-23 Thread Rick Faircloth
- From: Raj Vijay [mailto:vraajku...@rediffmail.com] Sent: Wednesday, September 23, 2009 8:37 AM To: cf-talk Subject: Re: CF jQuery - How to delay ajax completion until images are processed... Rick I think the exact problem area I the code above is the call to the function

Re: CF jQuery - How to delay ajax completion until images are processed...

2009-09-22 Thread James Holmes
It sounds like you need a synchronous request e.g.: http://stackoverflow.com/questions/133310/how-can-i-get-jquery-to-perform-a-synchronous-rather-than-asynchronous-ajax-req Of course, if you have to wait for a response, it may be worth simply doing a normal post rather than using ajax. mxAjax

RE: CF jQuery - How to delay ajax completion until images are processed...

2009-09-22 Thread Rick Faircloth
method into a cfthread, but that didn't seem to help, either. I'll check out your link...perhaps that's the answer. Rick -Original Message- From: James Holmes [mailto:james.hol...@gmail.com] Sent: Tuesday, September 22, 2009 11:01 PM To: cf-talk Subject: Re: CF jQuery - How to delay ajax

RE: CF jQuery - How to delay ajax completion until images are processed...

2009-09-22 Thread Rick Faircloth
trying to process images in the background. Rick -Original Message- From: Rick Faircloth [mailto:r...@whitestonemedia.com] Sent: Tuesday, September 22, 2009 11:13 PM To: cf-talk Subject: RE: CF jQuery - How to delay ajax completion until images are processed... Thanks for the tip, James

RE: CF jQuery - How to delay ajax completion until images are processed...

2009-09-22 Thread lists
Subject: RE: CF jQuery - How to delay ajax completion until images are processed... Thanks for the tip, James... I tried to use the setting async: false in the ajax parameters, but that didn't seem to have any effect. I wish I could somehow let the image processing continue even if the close

RE: CF jQuery - How to delay ajax completion until images are processed...

2009-09-22 Thread Rick Faircloth
Message- From: lists [mailto:li...@commadelimited.com] Sent: Tuesday, September 22, 2009 11:39 PM To: cf-talk Subject: RE: CF jQuery - How to delay ajax completion until images are processed... Rick... Are you using the GET/POIST methods, or using the AJAX methods from within jQuery? AJAX

Re: CF jQuery - How to delay ajax completion until images are processed...

2009-09-22 Thread James Holmes
. Rick -Original Message- From: lists [mailto:li...@commadelimited.com] Sent: Tuesday, September 22, 2009 11:39 PM To: cf-talk Subject: RE: CF jQuery - How to delay ajax completion until images are processed... Rick... Are you using the GET/POIST methods, or using the AJAX methods