ColdFusion
  Home arrow ColdFusion arrow Page 3 - CFAjax: What it is and How to Use it
IBM developerWorks
Dev Articles Forums 
ADO.NET  
Apache  
ASP  
ASP.NET  
C#  
C++  
ColdFusion  
COM/COM+  
Delphi-Kylix  
Design Usability  
Development Cycles  
DHTML  
Embedded Tools  
Flash  
Graphic Design  
HTML  
IIS  
Interviews  
Java  
JavaScript  
MySQL  
Oracle  
Photoshop  
PHP  
Reviews  
Ruby-on-Rails  
SQL  
SQL Server  
Style Sheets  
VB.Net  
Visual Basic  
Web Authoring  
Web Services  
Web Standards  
XML  
Dedicated Servers  
Actuate Whitepapers 
Moblin 
IBM® developerWorks 
Sun Developer Network 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
COLDFUSION

CFAjax: What it is and How to Use it
By: Jayaram Krishnaswamy
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 31
    2006-02-14

    Table of Contents:
  • CFAjax: What it is and How to Use it
  • Implemented ColdFusion Function
  • CFAjax implementation of a ColdFusion function
  • Code Analysis: The External js files
  • MyCFAjax.htm file

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT

    Stay one step ahead of the competition. Evaluate and give feedback on some of the hottest web development tools on the market today. Make your opinion heard! Click Here

    CFAjax: What it is and How to Use it - CFAjax implementation of a ColdFusion function


    (Page 3 of 5 )

    In this case, the same function will be used as in the previous case. The values for x and y will be pulled from two textboxes in the client file MyCFajax.htm sent to the server.  The JavaScript on this file looks up external .js files on the server in the core folder. Some of the example files in the example folder may not work right away for you because of the way the external .js files are referenced in the examples. In writing MyCFajax.htm the relative references are substituted by absolute references and therefore should work without a problem.

    This is the complete MyCFAjax.htm file. Some of the alert statements have been added to monitor the JavaScript functions.

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//
    EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1"> <title>CFAJAX_1: A simple Function</title> <script type='text/javascript' src='http://
    localhost/ajax/core/engine.js'></script> <script type='text/javascript' src='http://
    localhost/ajax/core/util.js'></script> <script type='text/javascript' src='http://
    localhost/ajax/core/settings.js'></script> <script language="javascript"> _cfscriptLocation = "http://localhost/ajax/examples/
    functions.cfm"; </script> <script> function loadInfo() { var x= DWRUtil.getValue("x"); //alert(x); var y= DWRUtil.getValue("y"); //alert(y); //alert("loadinfo() ran"); DWREngine._execute (_cfscriptLocation, null, "RightAngleTriangle",
    x, y, getResult); } function getResult(result) { //alert ("getResult running"); document.getElementById("info").innerHTML = result; } function init() { //alert ("init() function ran"); DWRUtil.useLoadingMessage(); DWREngine._errorHandler = errorHandler; loadInfo(); } </script> <body onLoad="init();"> <span name="info" id="info" style="background:#eeffdd; padding-left:
    4px; padding-right:4px;">xxx</span> <input id="x" name="x" value=3> <input id="y" name="y" value=4> </body> </html>

    More ColdFusion Articles
    More By Jayaram Krishnaswamy


       · Ajax is here to stay. All platforms, especially those web related will have great...
       · You gave a good example for ColdFusion and Ajax, but I have one suggestion. Can you...
       · Thanks. The OnLoad() for the body was used, any other event would do just the same....
       · The program may need a little TLC for user:Square Root of ( <input id="x"...
       · Square Root of ( <input id="x" name="x" value=3 onChange="loadInfo()"> ^ 2 +...
       · First of all, thanks for posting CFAjax: What it is and How to Use it. A very...
       · Let me know at what point you have the problem:1. Did you download CFAJAX from...
       · Great article!I think the MyCFAjax.htm input boxes are missing a call to the...
       · I know this is an old thread, but just in case someone stumbles upon this and needs...
     

    COLDFUSION ARTICLES

    - How to Access a SQL Anywhere Database with C...
    - CFXML: Probing XMLDOM in ColdFusion
    - Creating a Web Service with ColdFusion: the ...
    - CFAjax: What it is and How to Use it
    - Querying SQL 2000 Server from ColdFusion
    - Introduction to ColdFusion Markup Language, ...
    - Introduction to ColdFusion Markup Language
    - Databases and Dreamweaver MX 2004, concluded
    - Databases and Dreamweaver MX 2004
    - Welcome to Coldfusion MX 6.1, concluded
    - Welcome to Coldfusion MX 6.1
    - What You Must Know About ColdFusion Flow-Con...
    - What You Must Know About Operators in ColdFu...
    - Everything You Must Know About ColdFusion Va...
    - My First Application on ColdFusion MX Server







    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 4 hosted by Hostway