Skip to main content

Where can I find a very simple jQuery/AJAX Coldfusion tutorial? [closed]



Edit: After following a few tutorials I am stuck here





I am new to jquery but have some experience with Coldfusion. I have been desperate for an easy tutorial that shows how jQuery/AJAX pulls a query from a ColdFusion9 CFC and displays it on the HTML calling page. I tried following this ben_tutorial but it is too complex for me. There is also a another tutorial , but I do not want to install a plugin. Where should I be looking? I am googling "jquery ajax coldfusion"


Comments

  1. check this:

    there is a simple quickstart tutorial.

    http://www.365labs.net/cf_jquery/jquery_coldfusion_quickstart.htm

    ReplyDelete
  2. Some links I found are:


    http://blog.pengoworks.com/index.cfm/2011/3/3/Easy-AJAX-using-ColdFusion-jQuery-and-CFCs
    http://blog.kukiel.net/2011/09/jquery-coldfusion-and-cfdump-into-div.html
    http://tutorial43.learncf.com/
    Help with return data using ColdFusion and jQuery Ajax


    You can almost never go wrong reading these blogs for coldfusion


    bennadel.com
    coldfusionjedi.com
    http://cflove.org/

    ReplyDelete
  3. I assume you have a fair knowledge of HTML. To accomplish the sort of thing you are asking, use this snippet:

    $.get("coldfusion-page.cfm",function(data){
    $("#displaydiv").html(data);
    });


    $.get is a shorthand method that simply retrieves the given URL. The function() part that follows it is what is run when the request to the coldfusion page completes. All it does is put the data that came back into the HTML tag with an ID of "displaydiv".

    It really doesn't get simpler than this.

    ReplyDelete
  4. You didn't elaborate on what you want to update on the client side. Forms are common, so if you have client side html form like:

    <input type="text" name="title">
    <input type="text" name="date">
    <input type="text" name="author">


    You would generate and send a JSON string with coldfusion. The JSON string could look something like:

    {"title" : "mytitle", "date" : "mydate", "author" : "myauthor"}


    To update the data on the client side you would execute (coldfusion-page.cfm is the name of your server side ajax responder):

    jsonOBJ = {};
    $.ajax({
    type: "GET",
    url: "coldfusion-page.cfm",
    cache: false,
    success: function(data){
    jsonOBJ = jQuery.parseJSON(data);
    for (var key in jsonOBJ) {
    $("input[name=" + key + "]").val(jsonOBJ[key]);
    }
    },
    });


    OR, If you just want to update a div or textarea like:

    <div id="uniquedivname"></div>


    you just send the html/text and replace the success function in the ajax call with:

    success: function(data){
    $("#uniquedivname").html(data);
    },

    ReplyDelete

Post a Comment

Popular posts from this blog

Slow Android emulator

I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but for me it does not. I have followed all instructions in setting up the IDE, SDKs, JDKs and such and have had some success in staring the emulator quickly but is very particulary. How can I, if possible, fix this problem?

CCNA 1 Final Exam 2011 latest (hot hot hot)

  Hi! I have been posted content of ccna1 final exam (latest and only question.) I will post the answer and insert image on sunday. If you care, please subscribe your email an become a first person have full test content. Subcribe now  Some question  have not content because this question have images content. So that can you wait for me? SUNDAY 1. A user sees the command prompt: Router(config-if)# . What task can be performed at this mode? Reload the device. Perform basic tests. Configure individual interfaces. Configure individual terminal lines. 2. Refer to the exhibit. Host A attempts to establish a TCP/IP session with host C. During this attempt, a frame was captured with the source MAC address 0050.7320.D632 and the destination MAC address 0030.8517.44C4. The packet inside the captured frame has an IP source address 192.168.7.5, and the destination IP address is 192.168.219.24. At which point in the network was this packet captured? leaving host A leaving ATL leaving...