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

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

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 188 - 218 of 2027   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
188
document.getElementById(spanName).innerHTML = ''; should definitely remove any content. Not sure if the variable you are using is getting populate at multiple...
Arjun
arrow_us_dc
Offline Send Email
Sep 2, 2005
1:52 am
189
You can define a global variable like this. <script language="javascript"> var myvariable; function getCounty() { myvariable = "something"; var state =...
Arjun
arrow_us_dc
Offline Send Email
Sep 2, 2005
1:58 am
190
Yes you can return the query using CFAjax. In fact your code is perfectly fine , all you have to do is to change DWRUtil.addOptions("geomarket",...
Arjun
arrow_us_dc
Offline Send Email
Sep 2, 2005
2:03 am
191
You can call CFC's using CFAjax, but you need to a cffunction to create cfc instance and call the function on cfc. So basically CFAjax will always hit a cfm...
Arjun
arrow_us_dc
Offline Send Email
Sep 2, 2005
2:08 am
192
Thanks, I will give it a try. Is this covered in the documentation? I could not get the link to work to download that. ... -- Aaron Rouse ...
Aaron Rouse
aaron_rouse
Offline Send Email
Sep 2, 2005
1:13 pm
193
I've just completed a little javascript project using CFAjax for updating records without submitting a form. It is the first release so I'd like to receive...
Giampaolo Bellavite
bellavite
Offline Send Email
Sep 4, 2005
12:29 am
194
Yeah, I did exactly that, but the alert came up with null. In the end, I ended up prepending to the array passed back and then splicing the array before...
Chad Renando
renantc
Offline Send Email
Sep 5, 2005
10:07 am
195
I am trying to return a small set of query results from an access database. It seems no matter what I try the results are always returned as a list of:...
coolmanron
Offline Send Email
Sep 6, 2005
5:15 am
196
Hey Ron. Common issue, had it myself. Refer to the array in the Javascript as so: If a single array: ReturnedArray[0] to return the first array item position ...
Chad Renando
renantc
Offline Send Email
Sep 6, 2005
5:37 am
197
I was wondering I want to place CFAjax in a subfolder. So i installed it following the instructions and then tried going to the installation page so i could...
the_worst_user
Offline Send Email
Sep 6, 2005
7:52 pm
199
I am running the example that dynamically loads state information based on the state selected on my server and I get the following Javascript Application Error...
antondiego
antondiego@...
Send Email
Sep 7, 2005
3:51 pm
200
I have the following function inside a .cfc file already loaded. I would appreciated somebody to show me how to call it using XMLHTTP. Very first approach to...
Walter Conti
contiw
Offline Send Email
Sep 7, 2005
5:11 pm
201
... Same predicament here. Have you been able to solve this problem? All the best ContiW...
Walter Conti
contiw
Offline Send Email
Sep 7, 2005
6:29 pm
202
Hi guys, i-m starting with cfajax, but i'm crazy by now. I tried a basic List ajax app. <script type='text/javascript' src='/chimera/ajax/engine.js'></script> ...
JJokocha
ddiament
Offline Send Email
Sep 7, 2005
6:59 pm
203
can somebody break this example up for me and explain what is going on step by step in this function? <cffunction name="companyDetails"> <cfargument...
antondiego
Offline Send Email
Sep 7, 2005
8:11 pm
204
For debugging, try copying your cffunction code into a test.cfm page, replace the cfargument with cfset, remove the arguments. scope and change cfreturn to...
Chad Renando
renantc
Offline Send Email
Sep 7, 2005
10:19 pm
205
I checked the functions but seems to be right. there is something i should verify? because the second javascrip function is not executing.... aaaaarrgg. ... ...
JJokocha
ddiament
Offline Send Email
Sep 8, 2005
3:08 pm
206
Ok, i've done something really basic to undestand how to make this thing to work. I copied the core and functions.cfm into a folder called CORE in my projects...
JJokocha
ddiament
Offline Send Email
Sep 8, 2005
4:12 pm
207
Ok, i've done something really basic to undestand how to make this thing to work. I copied the core and functions.cfm into a folder called CORE in my projects...
JJokocha
ddiament
Offline Send Email
Sep 8, 2005
4:12 pm
208
I am trying to: function getNotes() { var textareanotes = DWRUtil.getValue("notes"); DWREngine._execute(_cfscriptLocation, null, 'notes', textareanotes, ...
kevin
kkoltz
Offline Send Email
Sep 8, 2005
4:15 pm
209
The problem you were having is that the _cfScriptLocation it's called _cfscriptLocation (check the small 's' in _cfScr -> _cfscr...) ... <pruckelshaus@y...> ...
JJokocha
ddiament
Offline Send Email
Sep 8, 2005
5:07 pm
210
is there any way to do this? i just downloaded cfajax and i just noticed that i cannot point my _cfscriptLocation to a .cfc file. this is not good for me.....
andersonnsi
dandcanderson@...
Send Email
Sep 8, 2005
8:20 pm
211
Post your cffunction so we can review. Have you tried putting an alert(); in the second function to see if it fires? Chad...
Chad Renando
renantc
Offline Send Email
Sep 8, 2005
8:34 pm
212
Anton Well in brief code here is trying to read the data from the .csv file instead of the database. And since reading from the csv file is slower and in order...
Arjun
arrow_us_dc
Offline Send Email
Sep 9, 2005
2:49 am
213
DRWUtil is undefined means, that html/client page is not able to access the js files. You should check the mapping, one simple test would be copy the url of js...
Arjun
arrow_us_dc
Offline Send Email
Sep 9, 2005
2:53 am
214
Daro Did you updated the html page to call the new function, and also did you checked if there are any syntax problem in the functions.cfm, usually this type...
Arjun
arrow_us_dc
Offline Send Email
Sep 9, 2005
2:59 am
215
You cannot point the _cfscriptlocation directly to a .cfc, the reason being very simple the instance of a CFC have to be first created before it can be used,...
Arjun
arrow_us_dc
Offline Send Email
Sep 9, 2005
3:22 am
216
Hello I have a humble request with all the CFAjax users to actively participate in the form and if you are able to find the solution to your issues or find...
Arjun
arrow_us_dc
Offline Send Email
Sep 9, 2005
3:24 am
217
ok, i understand that- would it be possible to invoke the cfc directly on my first .cfm page, and call on it? like: <cfscript> myObj =...
andersonnsi
dandcanderson@...
Send Email
Sep 9, 2005
10:29 am
218
I would request some documentation, i see the code is commented a bit- but i cannot find any documentation on the available functions. I have to look through...
andersonnsi
dandcanderson@...
Send Email
Sep 9, 2005
10:41 am
Messages 188 - 218 of 2027   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