[cfaussie] Re: How to create a popup window after some Cf processing

2006-10-22 Thread Andrew Scott
Mike, I use the dojo framework and that sort of thing becomes extremely easy to do. The thing you need to do is something like this. Function previewClicked() { // Send info back to the server and wait for a response (Ajax is best here //If succesfull open the window //otherwise display an

[cfaussie] Re: How to create a popup window after some Cf processing

2006-10-22 Thread Rod Higgins
Froman image / button onclick=window.open('mylocation.cfm'); ?? Or on a new page body onload=window.open('mylocation.cfm'); is that the sort of thing your looking for? -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Kear Sent: Monday, 23

[cfaussie] Re: How to create a popup window after some Cf processing

2006-10-22 Thread Blair McKenzie
Sounds like you want ajax functionality. The way to do this that takes the least amount of time and preperation is to add a hidden iframe to the page, then target the form at that iframe. The cfm processes the url parameters and outputs _javascript_ that opens the popup. If this is going to be an

[cfaussie] How to create a popup window after some Cf processing

2006-10-22 Thread Mike Kear
I know how to create a popup window from a button or a link, but i want to create a preview window for my CMS - when the user clicks Preview, there has to be some processing done on the form data, and only after it's successfully processed, does the popup window appear, incorporating the

[cfaussie] Re: How to create a popup window after some Cf processing

2006-10-22 Thread Scott Thornton
Can you use URL vars instead of forms vars in your preview function? function openPopupScreen() { // opens popup window without all the toolbars menu etc var window; var uniquename = Math.floor(Math.random()*100); uniquename = uniquename.toString(); loginwindow =

[cfaussie] Re: How to create a popup window after some Cf processing

2006-10-22 Thread Mike Kear
Thanks Rod, I think i'm trying to make it too complicated for myself. I was trying to do my normal style of processing the form in the same page, THEN going to the new location. But if i pass the form struct to the popup and process it there, that would achieve the same thing I think. It's

[cfaussie] maximum length of CGI.query_string

2006-10-22 Thread AJ Mercer
does any one know if ColdFusion has a maximum size limit on a cgi.query_string? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups cfaussie group. To post to this group, send email to cfaussie@googlegroups.com To