Search the web
Sign In
New User? Sign Up
cfajax
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1695 - 1727 of 2026   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1695
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...
Ryan
phidelt1350
Offline Send Email
Jul 5, 2006
5:13 pm
1697
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 ...
James Holmes
holmesjr_2005
Offline Send Email
Jul 6, 2006
1:33 am
1698
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...
Keith Smith
soberhill
Offline Send Email
Jul 8, 2006
4:37 pm
1699
http://www.indiankey.com/cfajax/wiki/ow.asp?CFAjaxInstallation ... -- CFAJAX docs and other useful articles: http://jr-holmes.coldfusionjournal.com/...
James Holmes
holmesjr_2005
Offline Send Email
Jul 9, 2006
2:02 am
1700
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...
slanek15
Offline Send Email
Jul 11, 2006
2:28 pm
1701
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...
jbirdsell_2000
Offline Send Email
Jul 11, 2006
6:40 pm
1702
<cfreturn> was added in CFMX -- I don't think you can use cfajax in CF 5. ***************** Ken Ferguson 214.636.6126 *****************...
Ken Ferguson
ksferg_99
Online Now Send Email
Jul 11, 2006
7:55 pm
1703
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:...
Snake
snake_hollywwod
Offline Send Email
Jul 11, 2006
11:01 pm
1704
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...
James Holmes
holmesjr_2005
Offline Send Email
Jul 12, 2006
12:03 am
1705
Has anyone looked into this? Being able to click back to the previous content that was inside a DIV or SPAN element....
nando168
Offline Send Email
Jul 12, 2006
8:31 am
1706
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...
slanek15
Offline Send Email
Jul 12, 2006
1:16 pm
1707
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 ...
Ken Ferguson
ksferg_99
Online Now Send Email
Jul 12, 2006
1:28 pm
1708
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...
slanek15
Offline Send Email
Jul 12, 2006
2:01 pm
1709
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...
slanek15
Offline Send Email
Jul 12, 2006
2:11 pm
1710
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...
James Holmes
holmesjr_2005
Offline Send Email
Jul 12, 2006
2:23 pm
1711
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...
Ken Ferguson
ksferg_99
Online Now Send Email
Jul 12, 2006
2:41 pm
1712
"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...
Ken Ferguson
ksferg_99
Online Now Send Email
Jul 12, 2006
2:41 pm
1713
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...
slanek15
Offline Send Email
Jul 12, 2006
2:51 pm
1714
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...
James Holmes
holmesjr_2005
Offline Send Email
Jul 12, 2006
2:53 pm
1715
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...
slanek15
Offline Send Email
Jul 12, 2006
3:02 pm
1716
There's a nice code snippet that will help you keep track of memory usage: <cfset runtimeObj = CreateObject("java","java.lang.Runtime").getRuntime()> ...
James Holmes
holmesjr_2005
Offline Send Email
Jul 12, 2006
3:08 pm
1717
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...
James Holmes
holmesjr_2005
Offline Send Email
Jul 12, 2006
3:09 pm
1718
"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...
slanek15
Offline Send Email
Jul 12, 2006
3:34 pm
1719
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...
C.P. Web Designs
cp_designz
Offline Send Email
Jul 12, 2006
6:50 pm
1720
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...
James Holmes
holmesjr_2005
Offline Send Email
Jul 13, 2006
1:41 am
1721
May be a stupid question but - would it be possible to do: _cfscriptLocation = "blah"; _cfscriptLocation2 = "blah2"; Then in the javascript functions, do...
nando168
Offline Send Email
Jul 13, 2006
7:01 am
1722
Yep that would work just fine. ________________________________ From: cfajax@yahoogroups.com [mailto:cfajax@yahoogroups.com] On Behalf Of nando168 Sent:...
Jason Berry
tyrion81
Offline Send Email
Jul 13, 2006
7:03 am
1723
Title: AJAX Developer Location: Mountain View, CA Type: W2-Contract Length: 6 Months Pay Rate: Market Job Description - Extend a browser-based client into new...
xhossamx
Offline Send Email
Jul 13, 2006
7:22 pm
1725
anyone has any examples of CFAJAX other than on indiankey?...
amit_fsu
Offline Send Email
Jul 19, 2006
1:35 am
1727
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...
James Holmes
holmesjr_2005
Offline Send Email
Jul 19, 2006
5:51 am
Messages 1695 - 1727 of 2026   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help