Re: Calling a ColdFusion Function with Javascript

2006-12-28 Thread Ioannis Papanikolaou
Thank you very much for your responces. At the moment I know where to focus and what direction to follow in order to achive it. Again thanx a lot for your time. ~| Create robust enterprise, web RIAs. Upgrade & integrate Adobe Col

Re: Calling a ColdFusion Function with Javascript

2006-12-27 Thread Christopher Jordan
Ioannis, I'll phrase my reply somewhat differently (though I think most respondents did mention this) -- It's not possible to do it exactly the way you suggested. AJAX *does* make this possible. Using AJAX you can make a call to the server from the client without the browser refreshing. I'll n

RE: Calling a ColdFusion Function with Javascript

2006-12-27 Thread Steve Brownlee
Ioannis: Unfortunately, this is not possible. Here's what happens when someone requests one of your ColdFusion pages. 1. The browser sends an HTTP response to your web server. 2. The web server hands over the request to ColdFusion. 3. ColdFusion then parses all of the CFML in your page and creat

RE: Calling a ColdFusion Function with Javascript

2006-12-27 Thread Ian Skinner
Hello people, Do you know how can I actually call a Coldfusion funsction with a javascript function. for example I am using onClick to call a cffunction inside a div. (DOM) Example:

Re: Calling a ColdFusion Function with Javascript

2006-12-27 Thread Claude Schneegans
>>Do you know how can I actually call a Coldfusion funsction with a javascript function. Yes I know: you can't. Javasript is run on your client's PC, AFTER any CF code has been executed on the server. You may use some AJAX too, to make your client browser talk to the server, but this is kind o