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

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 9 - 38 of 2021   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
9
Was thinking a good example for Ajax would be a recordset browser... like something where you could plug in a function or a recordset and get back the rows...
a1111111111111
Offline Send Email
Jun 1, 2005
2:55 pm
10
I am testing the examples and continuously getting: getValue() can't find an element with id: state. This is for the list.htm file. I don't quite understand...
jdevpres
Offline Send Email
Jun 1, 2005
4:49 pm
11
Strangely, this issue was happening when the development environment had debugging on, but once the debugging was turned off, app worked fine. ... the ... ...
Arjun
arrow_us_dc
Offline Send Email
Jun 1, 2005
4:58 pm
12
After looking at the code, I figured the issue is with the example page rather then the DWRUtil class (I have to update the example code base) If you change...
Arjun
arrow_us_dc
Offline Send Email
Jun 1, 2005
5:09 pm
13
What up Arjun? That worked. Guess it is time to integrate into the app and see if we can get it rockin'. I swear I thought I tried that before. :-) Maybe I was...
John C. Bland II
jdevpres
Offline Send Email
Jun 1, 2005
5:28 pm
14
I was getting SyntaxError when my path to the cfajax.cfm was wrong in my functions.cfm. You might try to change that up. ... John C. Bland II JDEV Inc. ...
John C. Bland II
jdevpres
Offline Send Email
Jun 1, 2005
5:31 pm
15
If I take my data out of my method.cfm and dump it i get my array. In the actual app it doesn't give me my data...just ",,,". When I set DWREngine._debug =...
John C. Bland II
jdevpres
Offline Send Email
Jun 1, 2005
8:03 pm
16
If you have set the debug = true, you will also have to add the following html in your page. <form name="frm"> <textarea id="error" name="error" rows="20"...
Arjun
arrow_us_dc
Offline Send Email
Jun 1, 2005
8:36 pm
17
Ok. Here's my result handler: function GetYearsResult(obj){ DWRUtil.fillList("timeSub1", obj, "VALUE", "NAME"); } I get undefined for both returned values. ...
John C. Bland II
jdevpres
Offline Send Email
Jun 1, 2005
8:48 pm
18
I don't mean to keep blowing the list up but there seems to be some internal issues or some implemenation issues: The debug shows 3 values returned but I only...
John C. Bland II
jdevpres
Offline Send Email
Jun 1, 2005
9:22 pm
19
Well it looks like your function.cfm is returning back a structure, and you want your dropdown box to have a value field and text field. The examples that are...
Arjun
arrow_us_dc
Offline Send Email
Jun 1, 2005
10:09 pm
20
Yes, my .cfm is return an array with a 2 element struct in it (name & value). Below shows the structure from my dump. Before it would read: name: 2003, value:...
John C. Bland II
jdevpres
Offline Send Email
Jun 1, 2005
10:35 pm
21
Will look into it, if the struct implementation in cfajax can be simplified Thanks for the input Arjun ... (name & ... like having ... using ... in an array ...
Arjun
arrow_us_dc
Offline Send Email
Jun 2, 2005
2:44 am
22
No prob. Do you have any idea why I would only get 1 record back as opposed to all of them? It seems like the loops are overwriting each other in the debug....
John C. Bland II
jdevpres
Offline Send Email
Jun 2, 2005
2:56 am
23
I had a need for this so I went ahead and hooked it up. The messageZone works off of CSS, just do #messageZone in the css and set the necessary params. Then...
John C. Bland II
jdevpres
Offline Send Email
Jun 2, 2005
8:48 pm
24
It would be nice to have examples of "approved" data "structures" to help eliminate the need for testing. I'm running into a prob now with using structures and...
John C. Bland II
jdevpres
Offline Send Email
Jun 3, 2005
9:44 pm
25
John With the current version of cfajax the approved returned data type are a) CF Structure created using StructInsert("key","value") b) CF Array one...
Arjun
arrow_us_dc
Offline Send Email
Jun 3, 2005
10:06 pm
26
So, using an array with a key/value combo would you simply ArrayAppend the key then ArrayAppend the value so the key is 1 and the value is 2? ... John C. Bland...
John C. Bland II
jdevpres
Offline Send Email
Jun 3, 2005
10:13 pm
27
With array you cannot do key value pair combination, if you want a array of key value combination your best bet is to use the cfquery output, you can reffer...
Arjun
arrow_us_dc
Offline Send Email
Jun 3, 2005
10:48 pm
28
Ok. I'll work with queries. Thx... ... John C. Bland II JDEV Inc. <mailto:john@...> john@... fax: 480.718.7958 IM: jdevPres ...
John C. Bland II
jdevpres
Offline Send Email
Jun 3, 2005
10:56 pm
29
Hi, CFAJAX doesn't seem to work with Apple's Safari browser. Nothing happens when you use any of the example app's. Now I've no idea how this technology works,...
dickbob57
richard@...
Send Email
Jun 4, 2005
7:44 am
30
We ran into this prob the other day when a client tested the filters (select boxes) on a site and they didn't work. It would be nice for Safari to be an ...
John C. Bland II
jdevpres
Offline Send Email
Jun 4, 2005
2:20 pm
31
I needed the ability to default the select to the previously selected item. So, I added the argument "selected" and updated the last line of the function to...
John C. Bland II
jdevpres
Offline Send Email
Jun 9, 2005
8:12 am
32
How do I send multiple arguments to Coldfusion for a single function call? I've tried an Array and an Object, but no luck. It doesn't look like it handles...
jnorris441
Offline Send Email
Jun 10, 2005
6:31 pm
33
Its very simple to pass multiple arguments to CF function using CFAJAX here is an example DWREngine.execute(getResult, null, 'stateinfo', arg1, arg2, arg3, ...
Arjun
arrow_us_dc
Offline Send Email
Jun 10, 2005
9:01 pm
34
Thanks, I didn't know that. When I couldn't figure it out, I added a few lines in cfajax.cfm that accept a Javascript object so that I don't have to match up...
jnorris441
Offline Send Email
Jun 13, 2005
2:13 pm
35
If you upgrade to the latest DWR util.js file, Safari should work just fine... (although I haven't thoroughly tested every last feature.) But I had some Safari...
dqmillar
dqmillar@...
Send Email
Jun 15, 2005
5:08 pm
36
Is there a way to pass a null value to the cffunction w/o getting an error?...
onesien
onesien@...
Send Email
Jun 16, 2005
1:26 am
37
CF does not allow passing null value to a function, but instead you can pass a blank value i.e. "" and check for if the argument value is "" then it means the...
Arjun
arrow_us_dc
Offline Send Email
Jun 16, 2005
12:54 pm
38
Well, I thought I posted this last time I made the change but I guess not. Either way, there was a prob with my implementation in IE. new Option(val, val,...
John C. Bland II
jdevpres
Offline Send Email
Jun 16, 2005
3:14 pm
Messages 9 - 38 of 2021   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