Re: CFDIV external

2009-05-18 Thread Glyn Jackson
Thanks Ray. You were right but I did find a very messy way of doing without have to make a http post. I used the coldfusion.navigate to post the form and display the results at the same time. javaScript:ColdFusion.navigate('#Response.ACSURL#','mydiv',null,null,'post','myform');return false; h

Re: CFDIV external

2009-05-15 Thread Raymond Camden
Unless you are using jsonp (which you aren't), you can't do an Ajax call to another server. You would need to post to your server and use CFHTTP to do the external call. On Fri, May 15, 2009 at 7:06 AM, Glyn Jackson wrote: > > Can this be done? > > I am using cfdiv so all my links are like so...

CFDIV external

2009-05-15 Thread Glyn Jackson
Can this be done? I am using cfdiv so all my links are like so... ColdFusion.navigate('paymenterror.cfm','productlistDiv'); This makes sure all content is submitted back to the cfdiv named 'productlistDiv' Now my problem is... I have form which I enter a URL to which an external API posts bac