Re: How to retrieve URL when passed via ColdFusion.navigator?

2007-12-27 Thread Don L
Did more research on the subject, found the following, am I stuck? This method of passing a url param to the parent would be the most efficient one, binding won't be applicable to my case here, anyone? Also, have I offended anyone here? Things seem to be a bit odd. Thanks. Author: Raymond

Re: How to retrieve URL when passed via ColdFusion.navigator?

2007-12-27 Thread Raymond Camden
I think I'm a bit confused. What _exactly_ are you trying to do? You say you want to pass a url param to the parent. Are you saying you want a child window to send the parent somewhere else? Or you just want to pass a value in JS to the parent? I'm confused. On Dec 27, 2007 9:37 AM, Don L [EMAIL

Re: How to retrieve URL when passed via ColdFusion.navigator?

2007-12-27 Thread Raymond Camden
Ditto. You use navigate to MOVE stuff. YOu are just trying to run a JS function. On Dec 27, 2007 10:48 AM, Azadi Saryev [EMAIL PROTECTED] wrote: can't you just call a js function without coldfusion.navigate? --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Don L wrote: I think

Re: How to retrieve URL when passed via ColdFusion.navigator?

2007-12-27 Thread Azadi Saryev
can't you just call a js function without coldfusion.navigate? --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Don L wrote: I think I'm a bit confused. What _exactly_ are you trying to do? You say you want to pass a url param to the parent. Are you saying you want a child window to

Re: How to retrieve URL when passed via ColdFusion.navigator?

2007-12-27 Thread Don L
I think I'm a bit confused. What _exactly_ are you trying to do? You say you want to pass a url param to the parent. Are you saying you want a child window to send the parent somewhere else? Or you just want to pass a value in JS to the parent? I'm confused. On Dec 27, 2007 9:37 AM, D Hi Ray,

Re: How to retrieve URL when passed via ColdFusion.navigator?

2007-12-27 Thread Don L
can't you just call a js function without coldfusion.navigate? --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Right on, gents, thank you, I need to get out of the cfwindow mindset. ~| Adobe® ColdFusion® 8 software 8

How to retrieve URL when passed via ColdFusion.navigator?

2007-12-26 Thread d l
Please try the following code, you'll see URL.param1 is not available upon Button click. On the other hand, the cfdebug has the following info: info:http: Replacing markup for element: testWin_body from URL test.cfm?param1=cat with params _cf_containerId=testWin_body info:widget: Navigating

Re: How to retrieve URL when passed via ColdFusion.navigator?

2007-12-26 Thread d l
oops, forgot to paste, cfparam name=URL.param1 default= on the top. html xmlns=http://www.w3.org/1999/xhtml; head cfoutput script language=javascript var doSomething = function() { document.getElementById('populateMe').value = 'You just clicked on #URL.param1#'; }