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...
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...
Strangely, this issue was happening when the development environment had debugging on, but once the debugging was turned off, app worked fine. ... the ... ...
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...
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...
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. ...
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 =...
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"...
Ok. Here's my result handler: function GetYearsResult(obj){ DWRUtil.fillList("timeSub1", obj, "VALUE", "NAME"); } I get undefined for both returned values. ...
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...
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...
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:...
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 ...
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....
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...
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 With the current version of cfajax the approved returned data type are a) CF Structure created using StructInsert("key","value") b) CF Array one...
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...
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...
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@...
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 ...
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...
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...
Its very simple to pass multiple arguments to CF function using CFAJAX here is an example DWREngine.execute(getResult, null, 'stateinfo', arg1, arg2, arg3, ...
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...
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@...
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@...
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...
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,...