To be more specific (since no one has replied to my earlier post), ... The instruction at "0x7753108e" referenced memory at "0x040fd250". The memory could not...
Hiya, Please help if you can, getting desperate now. :( I get the whole KEY - VALUE thing for the return data array (example below), but I am trying to...
You can set a variable in your JS that contains the rowid, to be read later by the returning function. In your case, set the variable in ajaxGetJobcodes() and...
Thanks James, That just came to me too in a flash of inspiration, I was just coming back here to post my workaround :) Guess you beat me to it with your (very...
I believe you need to use: DWREngine._execute(_cfscriptLocation, null, 'jobtitlelookup', categoryid,categoryid,"array", getResult); They key is the "array"...
Hi, I have been puzzling over this for hours, experimenting with displaying values on the screen, and eventually discovered this. (sorry, this is a bit long,...
I think I get you. The post-page scenario is expected. JS is an event driven language and when the page reloads the expected process would not fire unless...
I ran into this same issue... this was an issue I addressed in my several mods to util.js (I'll post my work when I get my site built)... but I'll post this...
Hi Neil, No it wasn't the firing of the JS function that was an issue. It was the fact that the submitted value had some white space on the end and so when...
Spot on - I was reluctant to modify and of the AJAX files, for the simple reason that if I download the latest release I would then need to see if that had...
Hi All, Magna Infotech is a premier IT company with offices and development centers in USA, Europe and India. In India, Magna Infotech has offices in...
Just create a changes.txt to keep up with what you do to it, then check the latest version for fixes... read the code directly, or create my all time favorite:...
Can I have a menu on the left, with nothing more than an empty DIV tag in my page body and have Ajax return a fully formatted page with style attributes and...
I am having trouble with this setting: DWREngine._debug = true; <form name="frm"> <textarea id="error" name="error" rows="20" cols="80"></textarea> </form> I...
Yes, you can return HTML and use the innerHTML property of a div to populate it, although bear in mind that CFHTTP will get the head and body tags if you use...
Ok, I experimented with this, and got it to kind of work, but it brought up a new question. If I do a CFHTTP to a file that exists on one of my websites that...
Hey folks - So a set of cfajax functions that works fine on my dev environment - I'm trying to move it over to a testing environment. I've moved all the...
If I use CFHTTP to get a page where anonymous access is enabled in IIS, I don't have a problem, but if I use CFHTTP where anonymous access is turned off in...
If I use CFHTTP to get a page where anonymous access is enabled in IIS, I don't have a problem, but if I use CFHTTP where anonymous access is turned off in...
Well, I was planning to use Ajax for my application menu. The user clicks on the menu item and it retrieves a page to display in the main content area of the...
You can use AJAX for this but it seems a little excessive. All I'm saying is that you don't have to use cfhttp if the file exists on the same server as your...
Nevermind on this - I'm starting to suspect it was just the browser hanging onto old code (despite numerous cache clearings). I decided to re-org my file...
Is your nav menu really THAT expensive to load? If it is, I think maybe you should look at that rather than trying to fake the funk. I'm all for finding...
No, it really isn't that expensive, and that wasn't my primary concern. However, it's a collapsable menu, so when the user would go from page to page, the...
Try setting a variable to remember which page they are on and use that to show which item to show expanded. Similar to highlighting a navbar for the page or ...