Search the web
Sign In
New User? Sign Up
ajaxcfc · ajaxCFC Group
? 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 1533 - 1563 of 1584   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1533
I remember reading that may be there is a limit on how many parameters you can pass to a function. I tried looking into the older messages to find it but I had...
ofarah24
Offline Send Email
Jan 21, 2008
5:09 pm
1534
Good Afternoon, That is correct, I had the same issue, only 10 parameters. Solution is to pass a WDDX recordset, and you will not have any limits. If you need...
Keith
head_java
Offline Send Email
Jan 21, 2008
6:32 pm
1535
Just pass all you parameters in a structure. For example just pass the whole FORM, to your cfc....
programmerneo
Offline Send Email
Jan 21, 2008
6:46 pm
1536
Thanks for the reply. Yes, some examples will help. Thank you/ ... seem...
ofarah24
Offline Send Email
Jan 21, 2008
6:57 pm
1537
To pass your FORM, you'll just need to serialize it... ...
programmerneo
Offline Send Email
Jan 21, 2008
10:22 pm
1538
Thank you for your response. How can I access the form variables once I am inside 'myFunction'? programmerneo <programmer_neo@...> wrote: To pass...
Farah Omar
ofarah24
Offline Send Email
Jan 22, 2008
2:35 pm
1539
Its pretty easy, and it took me a few tries to figure this out. (Since the AjaxCFC functionality has changed several times, in each incarnation of it. And the...
programmerneo
Offline Send Email
Jan 22, 2008
2:45 pm
1540
I would recommend, updating to the latest AjaxCFC, if you can. (i.e. you are not already using an older version of AjaxCFC in other places.) If you can not...
programmerneo
Offline Send Email
Jan 22, 2008
4:19 pm
1541
Not sure if anyone stills uses or monitors this group, but I'm asking anyway. Have written many... ajaxcfc programs always using the same CFC file defined in...
Keith
head_java
Offline Send Email
Mar 5, 2008
2:30 pm
1542
... is ... I'm also interested in an answer to this question. I have programmed a web application which uses a 2000 line page with a 4000 line page CFC. It'd...
Daniel
bd221182
Offline Send Email
Mar 5, 2008
2:41 pm
1543
Solution by geneaiello123@..., Yes you can. _ajaxConfig is a comma delimited list. eg. _ajaxConfig = ...
Keith
head_java
Offline Send Email
Mar 5, 2008
3:19 pm
1544
... Cheers!...
Daniel
bd221182
Offline Send Email
Mar 5, 2008
3:23 pm
1545
First and foremost I want to thank Chris Jordan for his tutorials. I was able to perform a dump of my query and extract recordcount and columnlist. What I...
josegura93
Offline Send Email
Mar 7, 2008
8:37 pm
1546
How can I not respond? Thanks for the kind words on the tutorials. I wish they were a little better. :o) To access particular rows in your dataset (which is...
Chris Jordan
c_s_jordan
Offline Send Email
Mar 7, 2008
9:19 pm
1547
Man... the formatting on that post just *did not* work out. Yikes! Sorry. Chris ... From: "Chris Jordan" <cjordan@...> To: ajaxcfc@yahoogroups.com Sent:...
Chris Jordan
c_s_jordan
Offline Send Email
Mar 7, 2008
9:23 pm
1548
Worked for me. Thanks for clearing it up. I copied the snippet from your blog early on but forgot to include cfjs. I was hung up trying to perform the loop...
josegura93
Offline Send Email
Mar 8, 2008
1:07 am
1549
cool. I'm glad to hear it! :o) Chris ... From: "josegura93" <jsegura01@...> To: ajaxcfc@yahoogroups.com Sent: Friday, March 7, 2008 7:07:18 PM (GMT-0600)...
Chris Jordan
c_s_jordan
Offline Send Email
Mar 8, 2008
4:22 am
1550
New to js and wanted to know what's the best way to reuse an ajaxcfc request if this possible. I want to setup a page with multiple selects and detail table....
josegura93
Offline Send Email
Mar 12, 2008
8:50 pm
1551
I will be out of the office starting 03/12/2008 and will not return until 03/18/2008. I will respond to your message when I return. If your issue is urgent,...
john.mcdonald@...
john_mcdonal...
Offline Send Email
Mar 12, 2008
9:16 pm
1552
Good Morning, I located a cfm program to convert numeric to words. 1 = one, 2 = two etc. I'm trying to run this as a ajaxcfc component but when I do a cfset...
Keith
head_java
Offline Send Email
Apr 2, 2008
3:22 pm
1553
It looks like the function ones() is not returning anything. It needs a variable to return. Try this: <cffunction name="ones"> <cfargument name="num"...
Kevin
lbretail22
Offline Send Email
Apr 3, 2008
3:20 am
1554
Good Morning, That's exactly what I determined. The way CF handles variables as a standard cfm file verses a cfc component is what threw me off. Thanks for...
Keith Henderson
head_java
Offline Send Email
Apr 3, 2008
2:05 pm
1555
Hey Guys, It's been a while but I'm back writing code. I downloaded the latest version of ajaxCFC which has jQuery included. The ajaxCFC code seems to be...
Ryan
phidelt1350
Offline Send Email
Apr 8, 2008
9:48 pm
1556
Ryan, The first thing that jumps out at me is that in your line of jQuery there, you're getting an id, but you're missing the pound sign that goes along with...
Chris Jordan
c_s_jordan
Offline Send Email
Apr 8, 2008
10:02 pm
1557
Chris, Thanks as always for the reply. I believe you've helped me on more than one occasion now. I am going to boot up the work laptop and try your changes...
Ryan
phidelt1350
Offline Send Email
Apr 9, 2008
1:14 am
1558
Chris, Thanks again for your help. Your suggestion did work and the ajax code picked up the value for locationID. But now my return function won't work. I'm...
Ryan
phidelt1350
Offline Send Email
Apr 9, 2008
1:10 pm
1559
Yes. They did. :o) I'll respond to your other post separately. :o) Chris ... From: "Ryan" <ksu_stud@...> To: ajaxcfc@yahoogroups.com Sent: Tuesday, April...
Chris Jordan
c_s_jordan
Offline Send Email
Apr 9, 2008
3:26 pm
1560
Ryan, The proper jQuery that you want is: $('#layerSpan').html(getResult); Check out this page (http://docs.jquery.com/Manipulation) for some useful jQuery...
Chris Jordan
c_s_jordan
Offline Send Email
Apr 9, 2008
3:38 pm
1562
Hi Ryan, The .val() function works on an element that has a value attribute, like an input type text:    <input type="text" name="messageTitle"...
Chris Jordan
c_s_jordan
Offline Send Email
Apr 16, 2008
10:36 pm
1563
I am trying to call a ajax function from another function. It is working this way: I send some search criteria to searchRecords and searchRecords return...
ofarah24
Offline Send Email
May 20, 2008
8:41 pm
Messages 1533 - 1563 of 1584   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