Re: Framework + Ajax?

2006-06-25 Thread Qasim Rasheed
I am using Ajax with one Fusebox and one Mach-II application and here is how I have approached it. I developed an AjaxFacade.cfc on my website root and every client side page that needed some Ajax, calls this CFC instead of calling the index.cfm. This way, since I was incorporating Ajax at the late

Re: Framework + Ajax?

2006-06-23 Thread Bryan Stevenson
>I have actually been taking apart the Mach-II + ajaxCFC demo, and have come > to the conclusion that I just don't get ajaxCFC. Ajax in my understanding > is supposed to be client-side JavaScript making asynchronous calls to the > backend server. So with this, where do CFCs come into play? Ajax

Re: Framework + Ajax?

2006-06-23 Thread Terry L Schmitt
I'm using Fusebox and Prototype for some AJAX style interfaces. I essentially built my own server-side piece to handle the JSON data. I use conditional layouts. One full layout for normal web pages, including all the nav, js and css. The other layout is bare bones and returns a JSON object. Thi

RE: Framework + Ajax?

2006-06-23 Thread Gaulin, Mark
t as a CFC is pretty natural (to me, anyway). I haven't looked at Prototype or Dojo, so I can't say whether they model things better on the server side. Mark -Original Message- From: Jeff Chastain [mailto:[EMAIL PROTECTED] Sent: Thursday, June 22, 2006 9:25 PM To: CF-Talk Sub

Re: Framework + Ajax?

2006-06-22 Thread James Holmes
ajaxCFC, CFAJAX and other CF-specific libraries provide a way to get native CF types returned into your client page without having to write the extra code yourself. For example, if I have a CFC that contains a method that returns a query, I can just use ajaxCFC to call the CF method from within my

RE: Framework + Ajax?

2006-06-22 Thread Jeff Chastain
hanks. -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Thursday, June 22, 2006 8:18 PM To: CF-Talk Subject: Re: Framework + Ajax? ajaxCFC has been intergrated with Model-Glue. You might check out the ajaxCFC site for info which may answer your question: http://www.robgond

Re: Framework + Ajax?

2006-06-22 Thread James Holmes
ajaxCFC has been intergrated with Model-Glue. You might check out the ajaxCFC site for info which may answer your question: http://www.robgonda.com/blog/index.cfm/2006/1/21/ajaxCFC-for-ModelGlue-Explained On 6/23/06, Jeff Chastain <[EMAIL PROTECTED]> wrote: > How does a framework, say Mach-II (al