Hey Everyone, I have a similar issue as what Adrian is describing below. I set up my structure on my function page, but the return order into my JS page is...
I'd just return an object here rather than a structure. The Object names the names rather than indexing them in an array, more like the way you'd think a ...
I'm new to CFAjax and have tried installing it for the first time on my development machine. However, I'm having a problem in that the test files run but...
http://www.indiankey.com/cfajax/wiki/ow.asp?CFAjaxInstallation ... -- CFAJAX docs and other useful articles: http://jr-holmes.coldfusionjournal.com/...
I've been struggling with this for a couple of days now, and I just don't see that it's possible. Is there a way to pass a ColdFusion query object to my...
I have installed cfajax and tweaked the file location. We are running CF5. However there seems to be a syntax error in the functions file. I get the...
cfajax works only on CFMX _____ From: cfajax@yahoogroups.com [mailto:cfajax@yahoogroups.com] On Behalf Of jbirdsell_2000 Sent: 11 July 2006 19:36 To:...
I'm surprise that wddx won't work for this. Anyway, are you building the query object on the client page, or is it a cf query that came from the server and...
Hey James, Well, it's a big query for a large recordset. What I'm doing is giving the users the ability to filter those results with additional criteria after...
I think you'll be best off looking at the idea James floated to store the query in the session, if you want to do it like this. ***************** Ken Ferguson ...
Thanks Ken. I really like the suggestion. Mainly because it would make my job REALLY easy. HAHA. How do you guys feel about the idea though? Is it wise to...
Actually, if that session variable is set immediately following the query, it will always be replaced with the latest data. So, as long as the user is on that...
OK, how about storing the initial complete query, with which I assume everyone starts, in the Application scope and then letting people refine that. This means...
Well, this is the reason I ended with "if you want to do it that way." I would do it quite differently if it was me. First off though, what are you actually...
"update the application scope one" -- I'm thinking you meant something different from how it sounds, right James. You mean store the base query in the app...
It's funny you should suggest that. That's exactly what I was doing before. EXACTLY. However, there's been so much discussion here about CFAJAX "abuse" that...
Yes, it makes more work for the client to have to deal with the transfer of the query back and forth. The whole idea of AJAX is to pass the client as little...
It's a search results page, so the initial query could come from any number of varying params. Like I said, if the session variable is set immediately after...
There's a nice code snippet that will help you keep track of memory usage: <cfset runtimeObj = CreateObject("java","java.lang.Runtime").getRuntime()> ...
That's pretty much what I'd do too. It takes so little extra overhead on our servers to run a query that it isn't often worth all the stuffing around with...
"The whole idea of AJAX is to pass the client as little info as it needs and for the server to do the work." So, having said that, would you suggest, as Ken...
Depends on what you are doing... You can pass a query as a parameter to a function, just not to another page via URL... If you need more information, feel free...
I usually build the table from the query in JS, then inject the result into innerHTML, because I prefer to separate the display (i.e. the table html) from the...
May be a stupid question but - would it be possible to do: _cfscriptLocation = "blah"; _cfscriptLocation2 = "blah2"; Then in the javascript functions, do...
Yep that would work just fine. ________________________________ From: cfajax@yahoogroups.com [mailto:cfajax@yahoogroups.com] On Behalf Of nando168 Sent:...
More reading and examples are in my blog at http://www.bifrost.com.au/blog/ On 7/19/06, amit_fsu <amit_fsu@...> wrote: anyone has any examples of CFAJAX...