document.getElementById(spanName).innerHTML = ''; should definitely remove any content. Not sure if the variable you are using is getting populate at multiple...
You can define a global variable like this. <script language="javascript"> var myvariable; function getCounty() { myvariable = "something"; var state =...
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...
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...
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...
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:...
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 ...
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...
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@...
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...
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> ...
can somebody break this example up for me and explain what is going on step by step in this function? <cffunction name="companyDetails"> <cfargument...
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...
I checked the functions but seems to be right. there is something i should verify? because the second javascrip function is not executing.... aaaaarrgg. ... ...
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...
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...
I am trying to: function getNotes() { var textareanotes = DWRUtil.getValue("notes"); DWREngine._execute(_cfscriptLocation, null, 'notes', textareanotes, ...
The problem you were having is that the _cfScriptLocation it's called _cfscriptLocation (check the small 's' in _cfScr -> _cfscr...) ... <pruckelshaus@y...> ...
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@...
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...
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...
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...
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...
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,...
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...
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@...
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...