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

Calling a ColdFusion Function with Javascript

2006-12-27 Thread Ioannis Papanikolaou
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: !-- body cffunction name=MyExample output=yes returntype=string cfreturn My DOM Coldfusion Example /cffunction

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 of

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: !-- body cffunction name=MyExample output=yes returntype=string cfreturn My DOM Coldfusion Example /cffunction

RE: Calling a ColdFusion Function with Javascript

2006-12-27 Thread Steve Brownlee
, 2006 2:59 PM To: CF-Talk Subject: Calling a ColdFusion Function with Javascript 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

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

Coldfusion function

2002-04-10 Thread Mario Martinez R.
Hi All: I'm coming today with perhaps a silly question. I have a complete template and I want to reuse its functionality . My question is : Is there anyway to create functions in coldfusion?? If so , which is the best option?? My function would only takes two parameters. Thanks in advance

RE: Coldfusion function

2002-04-10 Thread Kevin Schmidt
UDF's my friend. Of course you must have CF5. Check out cflib.org for some good examples of user defined functions. Kevin -Original Message- From: Mario Martinez R. [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 3:19 PM To: CF-Talk Subject: Coldfusion function Hi All

RE: Coldfusion function

2002-04-10 Thread Clint Tredway
if you are using CF 5, you can create a UDF like this cfscript function myFunction() { } /cfscript -Original Message- From: Mario Martinez R. [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 3:19 PM To: CF-Talk Subject: Coldfusion function Hi All: I'm coming today

Re: Coldfusion function

2002-04-10 Thread Jerry Johnson
The answer to your question is yes. Maybe. What version of Cold Fusion Server are you running your pages through? Cold Fusion Server 5.0 has UDF (User Defined Functions) which perform just like functions in any language. But what you are talking about with the template sounds more like you

RE: Coldfusion function

2002-04-10 Thread Shawn Grover
: Wednesday, April 10, 2002 2:23 PM To: CF-Talk Subject: RE: Coldfusion function UDF's my friend. Of course you must have CF5. Check out cflib.org for some good examples of user defined functions. Kevin -Original Message- From: Mario Martinez R. [mailto:[EMAIL PROTECTED]] Sent: Wednesday

RE: Coldfusion function

2002-04-10 Thread Mario Martinez R.
: Coldfusion function UDF's my friend. Of course you must have CF5. Check out cflib.org for some good examples of user defined functions. Kevin -Original Message- From: Mario Martinez R. [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 3:19 PM To: CF-Talk Subject

RE: Coldfusion function

2002-04-10 Thread Kevin Schmidt
Mario, It sounds like you want to go the custom tag route. Kevin -Original Message- From: Mario Martinez R. [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 3:51 PM To: CF-Talk Subject: RE: Coldfusion function I got CF4.5 so , I think I can not use UDF's . An include file

RE: Coldfusion function

2002-04-10 Thread BillyC
:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 3:51 PM To: CF-Talk Subject: RE: Coldfusion function I got CF4.5 so , I think I can not use UDF's . An include file allow me to pass parameters??. Creating a custom tag could work???. Any other choice?? Thanks for replying Mario --- Shawn Grover

RE: Coldfusion function

2002-04-10 Thread Mario Martinez R.
-Original Message- From: Mario Martinez R. [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 3:51 PM To: CF-Talk Subject: RE: Coldfusion function I got CF4.5 so , I think I can not use UDF's . An include file allow me to pass parameters??. Creating a custom tag could

RE: Coldfusion function

2002-04-10 Thread Shawn Grover
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 2:56 PM To: CF-Talk Subject: RE: Coldfusion function An include file is the same thing as the code being inline - so if you set a variable before the include, it's available to the included template. However

(Complete) ColdFusion Function reference?

2001-12-12 Thread Tyler Silcox
Is there a complete CF function reference in existence? I seem to remember seeing something online at some time in my ColdFusion developing history, but I can't find one when I need too, and I'm very intrigued to see what #CFusion_VerifyMail# does. (If it's even accessible, I found in by using

RE: (Complete) ColdFusion Function reference?

2001-12-12 Thread Semrau, Steven L Mr RDAISA/SRA
Check it out at the House of Fusion (http://www.houseoffusion.com/) ... 4th link down. -Original Message- From: Tyler Silcox [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 12, 2001 2:14 PM To: CF-Talk Subject: (Complete) ColdFusion Function reference? Is there a complete CF

Re: (Complete) ColdFusion Function reference?

2001-12-12 Thread Michael Dinowitz
Look at the front of House of Fusion (www.houseoffusion.com). I have a complete function list there. The function your asking about queries a mail server to see if it is operating properly. The attributes are in the list. At 02:13 PM 12/12/01, you wrote: Is there a complete CF function

RE: (Complete) ColdFusion Function reference?

2001-12-12 Thread Adkins, Randy
Yep Seen it before for version 4 but not looked at it since 5 came out. -Original Message- From: Semrau, Steven L Mr RDAISA/SRA [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 12, 2001 2:12 PM To: CF-Talk Subject: RE: (Complete) ColdFusion Function reference? Check it out