Re: cfajax error

2011-11-16 Thread Leigh
> the problem only reared it'sugly head with Access with Unicode.. Oh the joys of driver differences.. not to mention that uninformative error message. (It may as well have just said "oops").  Anyway, glad to hear it is fixed. -Leig ~

Re: cfajax error

2011-11-15 Thread Greg Morphis
Leigh, you were right! That's what it was but the problem only reared it's ugly head with Access with Unicode.. Since I can't reinstall CF on our prod box your solution saved me from having to replicate the DB in Oracle and then alter the queries to match. This app may not even be used much more s

Re: cfajax error

2011-11-12 Thread Claude Schnéegans
>>line 53* Do not take the line number as a hint. When there is an error in a query, the error is returned by the driver and CF doesn't know which line caused the error. It will indicate any line in the query. ~| Order the Ado

RE: cfajax error

2011-11-11 Thread Rick Faircloth
Yes... seems those reserved words were a problem to always watch out for in Access. -Original Message- From: Leigh [mailto:cfsearch...@yahoo.com] Sent: Friday, November 11, 2011 9:11 PM To: cf-talk Subject: Re: cfajax error Rick - The odbc date format should be fine. I am pretty sure

Re: cfajax error

2011-11-11 Thread Leigh
Rick - The odbc date format should be fine. I am pretty sure the column named "Year" is the problem. It is a reserved word. -Leigh ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/d

RE: cfajax error

2011-11-11 Thread Rick Faircloth
Milburn [mailto:scmilb...@gmail.com] Sent: Friday, November 11, 2011 1:57 PM To: cf-talk Subject: Re: cfajax error Have you tried to quote the last item in the values list (the year)? Depending on how that is defined in the database, it may require quotes. Instead of: #year(foodate)# Try: '#ye

Re: cfajax error

2011-11-11 Thread Russ Michaels
you can use the ODBC socket option instead, if you google then you should be able to find some examples. However I think the easiest and best solution would be to use the Access Upside wizard to convert to SQL Server, Microsoft also provide some free migration and upgrade tools to do the job as we

Re: cfajax error

2011-11-11 Thread Greg Morphis
So apparently the problem is within the Microsoft Access with Unicode driver.. However we don't have the ODBC service installed on production. I googled manually installing it and it mentioned some SequeLink folder in the db directory.. There's no DB folder or a SequeLink folder.. How can I downlo

Re: cfajax error

2011-11-11 Thread Steve Milburn
Have you tried to quote the last item in the values list (the year)? Depending on how that is defined in the database, it may require quotes. Instead of: #year(foodate)# Try: '#year(foodate)#' HTH Steve On Fri, Nov 11, 2011 at 1:22 PM, Greg Morphis wrote: > > Same error.. WTH? > foodate is t

Re: cfajax error

2011-11-11 Thread Dave Watts
> No, date_taken is 11/11/2011 Sorry, I didn't even see the first item in the VALUES list. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-

Re: cfajax error

2011-11-11 Thread Greg Morphis
Same error.. WTH? foodate is today.. 11/11/2011 Error Executing Database Query. Syntax error in INSERT INTO statement. The error occurred in *C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\Production\TWST\time_off_save.cfm: line 53* 51 : '

Re: cfajax error

2011-11-11 Thread Greg Morphis
No, date_taken is 11/11/2011 I'll try the createodbcdateformat().. I've never had to use that with Oracle so it's something else to try On Fri, Nov 11, 2011 at 12:11 PM, Dave Watts wrote: > > > INSERT INTO time_taken ( time_off_id, employee_id, date_taken, notes, > > actionuser, actiondate, ye

Re: cfajax error

2011-11-11 Thread Dave Watts
> INSERT INTO time_taken ( time_off_id, employee_id, date_taken, notes, > actionuser, actiondate, year ) VALUES ( 'VV', 'e0012345', 11/11/2011, '', > 'e0012345', now(), 2011 ) The field date_taken is a Date/Time field, right? You're inserting an empty string, not a Date/Time value. Dave Watts, C

Re: cfajax error

2011-11-11 Thread Claude Schnéegans
>>dateformat(foodate,'mm/dd/') Here is your problem: use CeateODBCDateFormat instead: #CeateODBCDateFormat(foodate)# Also #CeateODBCDateFormat(now())# Furthermore, this will work provided foodate always contains a valid date. If it is empty, it will cause an error. In this case, you have t

Re: cfajax error

2011-11-11 Thread Greg Morphis
gt; >> >> got a url so we can take a look ? >> >> >> On Fri, Nov 11, 2011 at 5:10 PM, Rick Faircloth >> wrote: >> > >> > What about setting up some alerts with your AJAX variables >> > or using console.log in firebug for the

Re: cfajax error

2011-11-11 Thread Greg Morphis
g apps before > > tracking down a problem. > > > > hth, > > > > Rick > > > > -Original Message- > > From: Greg Morphis [mailto:gmorp...@gmail.com] > > Sent: Friday, November 11, 2011 11:01 AM > > To: cf-talk > > Subject: Re: cfajax error

Re: cfajax error

2011-11-11 Thread Russ Michaels
ve to use multiple techniques to debug apps before > tracking down a problem. > > hth, > > Rick > > -Original Message- > From: Greg Morphis [mailto:gmorp...@gmail.com] > Sent: Friday, November 11, 2011 11:01 AM > To: cf-talk > Subject: Re: cfajax error

RE: cfajax error

2011-11-11 Thread Rick Faircloth
: Greg Morphis [mailto:gmorp...@gmail.com] Sent: Friday, November 11, 2011 11:01 AM To: cf-talk Subject: Re: cfajax error Hmm the only error Firebug shows is the same oForm.auto_approve is indefined.. it shows a POST to the ajaxfunctions.cfc and it's OK I looked at the response and I see what

Re: cfajax error

2011-11-11 Thread Greg Morphis
I did that, and even have the reverse on the pages where I want to see the debugging.. but all I get is "Syntax error in INSERT INTO statement".. I hate Access! On Fri, Nov 11, 2011 at 10:41 AM, Russ Michaels wrote: > > put a cfsetting tag at the top of your ajax pages to override debug > out t

Re: cfajax error

2011-11-11 Thread Russ Michaels
put a cfsetting tag at the top of your ajax pages to override debug out to NO, this will allow you to have debugging enabled on the server without breaking your ajax calls. -- Russ Michaels www.bluethunderinternet.com  : Business hosting services & solutions www.cfmldeveloper.com    : ColdFu

Re: cfajax error

2011-11-11 Thread Greg Morphis
Ahh... I thought there might be some setting in the cfadmin to change that.. Cool, now I'm getting the same error as on production.. now to start looking through logs.. thanks! On Fri, Nov 11, 2011 at 10:27 AM, Dave Watts wrote: > > > Now, is there a way to turn off debugging for ajax response

Re: cfajax error

2011-11-11 Thread Claude Schnéegans
>>Hmm the only error Firebug shows is the same oForm.auto_approve is indefined.. The problem with Ajax is when there is an error in the template called by the function. This causes an error in the application because it cannot find what is expected in the text returned by the template. Instead

Re: cfajax error

2011-11-11 Thread Dave Watts
> Now, is there a way to turn off debugging for ajax response but leaving it > on for other things? Sure, you can do this on a per-page basis with CFSETTING. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Busine

Re: cfajax error

2011-11-11 Thread Greg Morphis
That would explain why it worked in Prod and gave a different error too.. holy crap, it's making sense.. Now, is there a way to turn off debugging for ajax response but leaving it on for other things? On Fri, Nov 11, 2011 at 10:12 AM, Dave Watts wrote: > > > I looked at the response and I see w

Re: cfajax error

2011-11-11 Thread Dave Watts
> I looked at the response and I see what looks like what you'd see with CF > debugging turned on, I see the query buried in the response and that looks > okay.. Maybe I'm doing something wrong in Firebug though, I haven't used it > much. That's probably the problem right there. If you have CF's

Re: cfajax error

2011-11-11 Thread Greg Morphis
Hmm the only error Firebug shows is the same oForm.auto_approve is indefined.. it shows a POST to the ajaxfunctions.cfc and it's OK I looked at the response and I see what looks like what you'd see with CF debugging turned on, I see the query buried in the response and that looks okay.. Maybe I'm

Re: cfajax error

2011-11-11 Thread Dave Watts
> I was tasked in moving an old app on a CF8 server to a CF7 server. The app > has some cfajax code that I'm not familiar with. I'm hoping someone here > has seen the error.. If it's actually making an AJAX call, use something like Firebug to view the returned value, and you might see your error

Re: CFAjax not playing well with javaScript.

2009-08-18 Thread Rick Root
On Tue, Aug 18, 2009 at 11:09 AM, Dave Watts wrote: > >> http://lmgtfy.com/?... > > That's just wrong. And yet much friendlier than http://www.justfuckinggoogleit.com -- Rick Root New Brian Vander Ark Album, songs in the music player and cool behind the scenes video at www.myspace.com/brianva

Re: cfajax with and javascript - not playing well together

2009-08-18 Thread Tony Bentley
You can always try using jquery $(div).load('template.cfm') which is lightweight and usually does not interfere with flash JS libs. ~| Want to reach the ColdFusion community with something they want? Let them know on the House

Re: CFAjax not playing well with javaScript.

2009-08-18 Thread Dave Watts
> http://lmgtfy.com/?... That's just wrong. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your locati

Re: CFAjax not playing well with javaScript.

2009-08-17 Thread Rick Root
On Mon, Aug 17, 2009 at 8:42 PM, Michael Grove wrote: > > I am still trying to figure out firebug. Spend more time learning firebug if you're gonig to do *ANY* ajax development. It's really quite simple. http://lmgtfy.com/?q=firebug+tutorial -- Rick Root New Brian Vander Ark Album, songs in t

Re: CFAjax not playing well with javaScript.

2009-08-17 Thread Michael Grove
Here is the code. I am still trying to figure out firebug. I added the ajaxonload - and now it will not load the first time but does on all clicks after that. Before it would load the first time but not afterwards. <--- a query is here for security check --->

Re: CFAjax not playing well with javaScript.

2009-08-17 Thread Azadi Saryev
On 18/08/2009 00:20, Michael Grove wrote: > Any suggestions would be greatly appreciated. use Firefox+Firebug to see the real js error. post relevant code from the page you are loading inside cfdiv (the one that throws the error) if you have any js in that page, make sure your functions are decla

Re: cfajax broken in CF 8.0.1?

2008-11-27 Thread Tom Chiverton
On Wednesday 26 Nov 2008, Huff, Jerome P. wrote: > This is a mapping problem with CF not knowing where to find the CFIDE > directory. Wouldn't there be a 404 in the web server logs for that ? -- Tom Chiverton Helping to enormously pursue compelling web-enabled holistic principle-centered platfo

Re: cfajax broken in CF 8.0.1?

2008-11-26 Thread Mike Chabot
View source in the page, look for a path to a JavaScript file near the top of the HTML that has "cfide" in it. Copy/paste that into the browser address to see if the included file is found. Here is an example: /CFIDE/scripts/ajax/package/cfajax.js -Mike Chabot On Wed, Nov 26, 2008 at 11:40 AM, C

RE: cfajax broken in CF 8.0.1?

2008-11-26 Thread Huff, Jerome P.
This is a mapping problem with CF not knowing where to find the CFIDE directory. -Original Message- From: Chris Hampton [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 26, 2008 11:41 AM To: cf-talk Subject: Re: cfajax broken in CF 8.0.1? Tom, Nothing in the logs is jumping out

Re: cfajax broken in CF 8.0.1?

2008-11-26 Thread Chris Hampton
Tom, Nothing in the logs is jumping out at me. I've checked the IIS logs, eventgateway.log, exception.log and server.log and nothing looks out of the ordinary. > On Wednesday 26 Nov 2008, Chris Hampton wrote: > > And I get "ColdFusion is not defined" in the FF Error Console. I > have > > ver

Re: cfajax broken in CF 8.0.1?

2008-11-26 Thread Tom Chiverton
On Wednesday 26 Nov 2008, Chris Hampton wrote: > And I get "ColdFusion is not defined" in the FF Error Console. I have > verified that the CFIDE files are correct and even re-applied the update. > I'm at a loss at this point. Do the web or application server logs show anything ? -- Tom Chivert

Re: cfajax broken in CF 8.0.1?

2008-11-26 Thread Chris Hampton
Mike, I created a page with: http://localhost:8500/My_stuff/AjaxUI/Book/hello1.cfm', {x:100,y:100,height:300,width:400,modal:false,closable:false, draggable:true,resizable:true,center:true,initshow:true, minheight:200,minwidth:200})"> And I get "ColdFusion is not defined"

Re: cfajax broken in CF 8.0.1?

2008-11-25 Thread Mike Chabot
If you create a sample test page that has nothing but a single AJAX feature on it, like a cfwindow tag, does that single test page work? On a complex page remember that a single JavaScript error can break all the JavaScript on the page. Is the CFIDE folder in a standard location that the updater co

Re: cfajax broken in CF 8.0.1?

2008-11-25 Thread Chris Hampton
Mike, Thanks for the response. However, the only thing I can find in the release notes about Ajax is an update to the FCKEditor, addition of ColdFusion.Window.destroy and a change to ColdFusion.Window.create. Is there something in the docs that I am missing? >Ajax functionality was updated in

Re: cfajax broken in CF 8.0.1?

2008-11-25 Thread Mike Chabot
Ajax functionality was updated in the 8.0.1 release. The release notes have the details. -Mike Chabot On Tue, Nov 25, 2008 at 12:17 PM, Chris Hampton <[EMAIL PROTECTED]> wrote: > I recently updated our servers to CF 8.0.1 and now none of my AJAX code > works. I checked the XHR response in Firebu

Re: CFAjax problem - cant see why this doesn't work

2008-11-09 Thread Mike Kear
Thank you Azadi, I cant believe i didnt var my variables in that function - i var them with an almost religious fervour normally. Guess i was in too much of a hurry. I didnt know about queryConvertForGrid() sounds like the problem. I must have skipped over that in the docs about CFGrid. Thanks

Re: CFAjax problem - cant see why this doesn't work

2008-11-09 Thread Azadi Saryev
1) in your cfc function's return use: 2) is there an Application.cfc with an onRequest() method anywhere that the Utilitieslibrary cfc will be affected by? 3) var your cfc variables :) Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Mike Kear wrote: > I am experimenting with the ajax part

Re: CFAjax problem - cant see why this doesn't work

2008-11-09 Thread Stephane Vantroyen
Hi, you have to convert your query before returning it to the grid, with queryConvertForGrid : your cfreturn should look like : Regards, Stéphane >Is the cfcs.utilities.utilitieslibrary mapping correct? > >Adrian >Building a database of ColdFusion errors at http://cferror.org/ > >I am exp

RE: CFAjax problem - cant see why this doesn't work

2008-11-09 Thread Adrian Lynch
Is the cfcs.utilities.utilitieslibrary mapping correct? Adrian Building a database of ColdFusion errors at http://cferror.org/ -Original Message- From: Mike Kear Sent: 09 November 2008 06:24 To: cf-talk Subject: CFAjax problem - cant see why this doesn't work I am experimenting with the

Re: CFAjax problem - cant see why this doesn't work

2008-11-08 Thread Mike Kear
oh yes and p.s. i have this at the top of the calling page: Which ensures the ajax elements are included in the page, I believe Cheers Mike Kear Windsor, NSW, Australia Adobe Certified Advanced ColdFusion Developer AFP Webworks http://afpwebworks.com ColdFusion, PHP, ASP, ASP.NET hosting from

Re: CFAjax Problem (parseJSON)

2008-03-02 Thread Leon Chalnick
Rob - I'm working on someone else's site (i.eit's not my code) and was trying to do some stuff and ran into the same problem. It turns out, that there's a gotcha you need to look out for: if the application.cfm (or anything else) is returning any HTML or content, it can screw up the content

Re: CFAJAX: Can't pass parameter.

2008-02-06 Thread AJ Mercer
If you have been modifying the CFC maybe the web service is being cached Go to CF Admin - web services, and delete it Then try again On Feb 7, 2008 2:13 AM, RobG <[EMAIL PROTECTED]> wrote: > Cutter (CFRelated) wrote: > > Use Firebug to watch the request. Those requests should show on your > > '

Re: CFAJAX: Can't pass parameter.

2008-02-06 Thread RobG
Cutter (CFRelated) wrote: > Use Firebug to watch the request. Those requests should show on your > 'Console' tab, and when expanded you can view the 'Post' variables. I'm > betting you have a casing issue. JS is picky like that, and I've been > caught more than a few times over the years. Thank

Re: CFAJAX: Can't pass parameter.

2008-02-06 Thread Cutter (CFRelated)
Use Firebug to watch the request. Those requests should show on your 'Console' tab, and when expanded you can view the 'Post' variables. I'm betting you have a casing issue. JS is picky like that, and I've been caught more than a few times over the years. Steve "Cutter" Blades Adobe Certified P

Re: CFAJAX: Can't pass parameter.

2008-02-05 Thread AJ Mercer
in the cfc, send yourself a dump of ARGUMENTS then you will see everything coming in Maybe a typo in the variable name On Feb 6, 2008 2:41 PM, RobG <[EMAIL PROTECTED]> wrote: > Okay, I'm stuck. I fixed my previous problem (JSON-related), and now > that I've moved onto writing some of my own co

Re: CFAjax Problem (parseJSON)

2008-01-30 Thread RobG
I did some more investigating and got it to work... though I don't understand why. Basically, I had to comment out all JavaScript on the site... not that there was much. I had this: if (self.parent.frames.length != 0) self.parent.location="#baseurl#"; in my Application.cfm fi

Re: CFAjax Problem (parseJSON)

2008-01-30 Thread RobG
Okay, if I did it right, here's what I see... On my local system (which works), the Response tab simply contains the Server Time that is sent back. On my live server (Windows) that isn't working right and returning that weird error message, I get this: === _cf_loadingtexthtml="

Re: CFAjax Problem (parseJSON)

2008-01-30 Thread Raymond Camden
You should see one line item per Ajax request. If you click to expand it, there is a 'Result' tab I believe. This shows you what the server returned. On Jan 30, 2008 10:52 AM, RobG <[EMAIL PROTECTED]> wrote: > Raymond Camden wrote: > > If you use Firebug to monitor the XHR requests, what do you in

Re: CFAjax Problem (parseJSON)

2008-01-30 Thread RobG
Raymond Camden wrote: > If you use Firebug to monitor the XHR requests, what do you in the > server response? Is it valid JSON? Hi Ray! I just installed firebug, but I don't quite understand what I'm looking for. I found the "XHR" section under the "Net" tab, but it doesn't really select. I s

Re: CFAjax Problem (parseJSON)

2008-01-30 Thread Raymond Camden
If you use Firebug to monitor the XHR requests, what do you in the server response? Is it valid JSON? On Jan 29, 2008 11:58 PM, RobG <[EMAIL PROTECTED]> wrote: > I was over at learncf.com and am trying to run their CFAjax tutorial on > one of my servers. When I click on either of the buttons, suc

Re: cfajax mapping issue (Resolved)

2007-12-07 Thread d l
Problem resolved by the workaround of placing cfc files under IIS web server's root directory, but that's nuts, Adobe's CF8 project manager were not doing a good job, imho... > Additional note: > Per the thread of ajaxproxy, http://www.houseoffusion. > com/groups/cf-talk/thread.cfm/threadid:5405

Re: cfajax mapping issue

2007-12-07 Thread d l
Additional note: Per the thread of ajaxproxy, http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:54051, have just tried the approach of copy ajax related folders and files to my IIS web root directory or its subdirectory of 'scripts' to no avail neither. > Using Ben's sample, callin

RE: cfajax

2007-01-31 Thread Gaulin, Mark
Hi First, if your callback function (ReturnCheckUser) sets a global JS variable then any other code can read it. Second, if you set "DWREngine.setAsync(false);" before calling "_execute" (so the _execute() call will be synchronous, meaning, it will wait) then the global variable set in the previous

Re: cfajax

2007-01-31 Thread Jacob Munson
I'd not use cfajax. Arjun has abandoned that project, and started MXAjax to replace it. CFAjax has unpatched security holes, and doesn't work on Safari. That said, I think I ran into the same problem once, and found that submit() isn't supported by all of the browsers. I can't remember what I d

Re: cfajax

2006-10-02 Thread James Holmes
CFAJAX is being replaced with MXAJAX, which has a feature set that blows most out of the water (as it's based on prototype and script.aculo.us) http://www.indiankey.com/mxajax/ By the way, this is the install procedure you wanted: http://www.bifrost.com.au/blog/index.cfm/2006/7/13/Installing-CFA

Re: cfajax

2006-10-02 Thread Rey Bango
I second Andy's recommendation of JQuery. Its very straightforward and the documentation is solid. And Ajax is only a small part of it. It provides a ton of methods to manipulate the DOM which you will need to do once you start getting into more advanced Ajax requirements. Rey... Richard White

Re: cfajax

2006-10-02 Thread Richard White
thanks again, i have already ;) as i want to dynamically build a cfchart through the ajax and dont know if it is possible! ill have a look on their posts, thanks ~| Introducing the Fusion Authority Quarterly Update. 80 pages of

RE: cfajax

2006-10-02 Thread Andy Matthews
Glad I could help. There's also a Google Groups for JSMX so if you get into trouble, make sure you read through some of the posts there. -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent: Monday, October 02, 2006 10:54 AM To: CF-Talk Subject: Re: cfajax thanks

Re: cfajax

2006-10-02 Thread Jake Churchill
It's the best way I've found. As long as you aren't using cfform it's good. cfform requires remoting which is more difficult. Richard White wrote: > i see, thanks jake its working fine now. the installation doesnt tell you > about any of that. > > Do you know if cfajax is the best way to imple

Re: cfajax

2006-10-02 Thread Richard White
thanks andy the JSMX looks so simple. I think as a beginner using this to start would be a good idea thanks again andy ;) ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion info

Re: cfajax

2006-10-02 Thread Richard White
i see, thanks jake its working fine now. the installation doesnt tell you about any of that. Do you know if cfajax is the best way to implement ajax in cf applications? thanks ~| Introducing the Fusion Authority Quarterly Updat

RE: cfajax

2006-10-02 Thread Andy Matthews
t dom interaction and I moved over to that. -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent: Monday, October 02, 2006 10:20 AM To: CF-Talk Subject: Re: cfajax also i am wondering if cfajax is the best way to implement ajax within cf applications. i would appreciate this a

Re: cfajax

2006-10-02 Thread Richard White
hi dave, thanks for your reply,i have just added the name of the mapping - Ajax, and the directory path to the ajax folder within the cf admininstrator. i then saved the changes and tried to run the examples but they arent working. There is very poor installation instructions with cfajax can

Re: cfajax

2006-10-02 Thread Jake Churchill
you don't need the virtual directory if you are using it locally. At least I didn't. Make a cfajax folder in your site root and extract everything there. You need to look at the settings.js file and change the global variable for your functions.cfm. Put all functions relating to this in a n

Re: cfajax

2006-10-02 Thread Richard White
also i am wondering if cfajax is the best way to implement ajax within cf applications. i would appreciate this advice to see if my frustrations are worth it :) thanks for your help ~| Introducing the Fusion Authority Quarterly

RE: cfajax

2006-10-02 Thread David Low
You need to look for "Mappings", that should work for you. > -Original Message- > From: Richard White [mailto:[EMAIL PROTECTED] > Sent: 02 October 2006 16:04 > To: CF-Talk > Subject: cfajax > > i am wondering if anyone uses cfajax. > > I am having problems installing it. i use the colfdf

RE: cfajax/ajaxcfc File Upload

2006-03-21 Thread Andy Matthews
Ah... Sorry about that. -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Monday, March 20, 2006 7:10 PM To: CF-Talk Subject: Re: cfajax/ajaxcfc File Upload A quick look at the source code shows that this example uses iframes, not the xmlhttprequest object. On 3

Re: cfajax/ajaxcfc File Upload

2006-03-20 Thread James Holmes
developer > ICGLink, Inc. > [EMAIL PROTECTED] > 615.370.1530 x737 > --//-> > > -Original Message- > From: Steve Brownlee [mailto:[EMAIL PROTECTED] > Sent: Monday, March 20, 2006 9:10 AM > To: CF-Talk > Subject: RE: cfajax/ajaxcfc File Up

RE: cfajax/ajaxcfc File Upload

2006-03-20 Thread Andy Matthews
I saw a PHP app that did file uploads using AJAX. http://www.air4web.com/files/upload/ -Original Message- From: Steve Brownlee [mailto:[EMAIL PROTECTED] Sent: Monday, March 20, 2006 9:10 AM To: CF-Talk Subject: RE: cfajax/ajaxcfc File Upload As far as my knowledge goes, you can'

RE: cfajax/ajaxcfc File Upload

2006-03-20 Thread Steve Brownlee
As far as my knowledge goes, you can't do file uploads with AJAX techniques. You can do all kinds of great user feedback on the upload using IFRAME and AJAX, but that's it. > -Original Message- > From: Blaine Korte [mailto:[EMAIL PROTECTED] > Sent: Saturday, March 18, 2006 12:41 PM > To:

Re: cfajax vs ajaxCFC Question.

2006-03-09 Thread Rick Root
Munson, Jacob wrote: > > Interesting. What license did he used to have, and how was it > restrictive? It was an informal "You can only redistribute it with my permission" license and although he apparently never refused permission to anyone, I'm enough of a fan of freely redistributable, open

Re: cfajax vs ajaxCFC Question.

2006-03-09 Thread James Holmes
Did you add it to the wiki? On 3/10/06, Rick Root <[EMAIL PROTECTED]> wrote: > cfajax still has this issue but I recently posted a "fix": > > http://www.opensourcecf.com/1/2006/02/Getting-CFAJAX-to-handle-Safari-properly.cfm -- CFAJAX docs and other useful articles: http://jr-holmes.coldfusionjo

RE: cfajax vs ajaxCFC Question.

2006-03-09 Thread Munson, Jacob
> I avoided ajaxCFC because of Rob's restricted open source > license. I do > agree that Arjun hasn't been providing much support. If he had an > official open source license, I'd create a cfopen project and > release my > own "derivative" work (RabidCFAJAX, anyone?) so that we could have >

Re: cfajax vs ajaxCFC Question.

2006-03-09 Thread Rick Root
Munson, Jacob wrote: > > This isn't true anymore. The latest release, 0.66 I believe, does > arguments the same way that cfajax does. That's good to hear. > > Also, the last cfajax release I used before jumping > ship didn't work with Apple's Safari. This may or may not be a concern > for you

Re: cfajax vs ajaxCFC Question.

2006-03-09 Thread Rick Root
Nick Han wrote: > I have used both of these APIs in my test environment. I think they > both work well. There are pros and cons in choosing one over the other, > and most of these issues I encountered were minor. For instance, > ajaxCFC is easier to set up, but the thing I don't like about it is

RE: cfajax vs ajaxCFC Question.

2006-03-09 Thread Munson, Jacob
> For instance, > ajaxCFC is easier to set up, but the thing I don't like about > it is the > passed parameters are transformed and received as array > arguments by the > CFCs. This isn't true anymore. The latest release, 0.66 I believe, does arguments the same way that cfajax does. > I would

RE: cfajax vs ajaxCFC Question.

2006-03-09 Thread PINE Phyo Z
I haven't tried CFAJAX, so I don't know the answer to your question. But may be you might want to have a look at : JSMX (http://www.lalabird.com/) (or is it too late for you to consider another API) ?? I found it much easier to set up and use than ajaxCFC. May be it is just my preference. Regards,

Re: cfajax vs ajaxCFC Question.

2006-03-09 Thread Bryan Stevenson
Also with CFAJAX you can't use it > within CFC framework. Huh...perhaps you mean something else, but we use CFAJAX with CFCs just fine. All I can say is I haven't tried ajaxCFC, but CFAJAX is the bees knees..we love it...we don't even post forms anymore!!! ;-) Bryan Stevenson B.Comm. VP & Dire

Re: CFAJAX and WebOrb

2006-02-06 Thread Aaron Roberson
Bryan, I saw this requirement on the F.A.Q. page of CFAJAX under Example 3 (http://indiankey.com/cfajax/faq.asp) James stated that this is rarely resorted to and now that I look at the page it appears to be a requirement of returning a list. Thanks for all of the resources guys! -Aaron On 2/6/0

Re: CFAJAX and WebOrb

2006-02-06 Thread Bryan Stevenson
> What struck me odd about CFAJAX is that it requires special values in > the "hint" attribute of the cffunction tag such as > hint="type='keyvalue' jsreturn='array'". While placing such code in > the hint attribute is not destructive when using the CFC in a > traditional way, it is difficult for p

Re: CFAJAX and WebOrb

2006-02-06 Thread James Holmes
You may as well take in JSMX too; also try Neuromancer if you want to use SOAP webservices as the server interface. On 2/6/06, Mark Drew <[EMAIL PROTECTED]> wrote: > Another easy product for AJ (and X if you like) is ajform -- CFAJAX docs and other useful articles: http://jr-holmes.coldfusionjour

Re: CFAJAX and WebOrb

2006-02-06 Thread Mark Drew
g these types of products. > > http://www.robgonda.com/blog/projects/ajaxcfc/ > > -Original Message- > From: Aaron Roberson [mailto:[EMAIL PROTECTED] > Sent: Sunday, February 05, 2006 7:48 PM > To: CF-Talk > Subject: Re: CFAJAX and WebOrb > > James, > > I wil

RE: CFAJAX and WebOrb

2006-02-06 Thread Steven Brownlee
Aaron, also take a look at Rob Gonda's ajaxCFC framework if you're investigating these types of products. http://www.robgonda.com/blog/projects/ajaxcfc/ -Original Message- From: Aaron Roberson [mailto:[EMAIL PROTECTED] Sent: Sunday, February 05, 2006 7:48 PM To: CF-Talk S

Re: CFAJAX and WebOrb

2006-02-05 Thread Aaron Roberson
James, I will have to take a deeper look into CFAJAX! Thanks, Aaron On 2/5/06, James Holmes <[EMAIL PROTECTED]> wrote: > The cf functions called by CFAJAX don't live in a CFC - they are a in > a .cfm file. Most people leave their CFCs unchanged, instantiating > them somewhere and writing wrapper

Re: CFAJAX and WebOrb

2006-02-05 Thread James Holmes
The cf functions called by CFAJAX don't live in a CFC - they are a in a .cfm file. Most people leave their CFCs unchanged, instantiating them somewhere and writing wrapper functions for them in the functions.cfm file. This provides the CFAJAX hints if you need them (which is not often necessary, de

Re: CFAJAX and WebOrb

2006-02-05 Thread Aaron Roberson
James, Thank you for the brief overview. What I have gathered is that CFAJAX is strictly for converting CFC variables into JavaScript calls for AJAX implementation. This has been provided for free by a very generous, friendly web developer '-) On the otherhand, WebOrb does both that and Flash Remo

Re: CFAJAX and WebOrb

2006-02-05 Thread James Holmes
The two are very different. I am going to refrain from guessing which you decided was a hack. CFAJAX comprises a set of JavaScript files and a ColdFusion include; it works by translating the results of CF function calls (made via DWR) into JavaScript, which is then sent back to the browser. It is

RE: CFAJAX fun

2005-12-27 Thread Snake
The function I have tested independently and know it works and returns the expected data. Russ -Original Message- From: Ken Ferguson [mailto:[EMAIL PROTECTED] Sent: 27 December 2005 15:54 To: CF-Talk Subject: Re: CFAJAX fun Your problem is going to be one, no doubt, of configuration

Re: CFAJAX fun

2005-12-27 Thread Ken Ferguson
Your problem is going to be one, no doubt, of configuration. When there is an error in your cf function, you won't see anything unless you set up a way to handle it. Check out James' blog for some help. Also, join the cfajax list for some more specific help, if you need. CFAJAX docs and other

RE: CFAjax question: [Object Error] in IE, works fine in FF

2005-12-16 Thread Bobby Hartsfield
PM To: CF-Talk Subject: RE: CFAjax question: [Object Error] in IE, works fine in FF I think it'd be much easier without the *cough* "AJAX Framework" In this code... the function 'handleStateChange' is where you read the response and use the info to change the innerHTML o

RE: CFAjax question: [Object Error] in IE, works fine in FF

2005-12-16 Thread Bobby Hartsfield
..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Friday, December 16, 2005 5:15 PM To: CF-Talk Subject: RE: CFAjax question: [Object Error] in IE, works fine in FF Anyone have any ideas on

RE: CFAjax question: [Object Error] in IE, works fine in FF

2005-12-16 Thread Ben Nadel
nt: Friday, December 16, 2005 5:15 PM To: CF-Talk Subject: RE: CFAjax question: [Object Error] in IE, works fine in FF Anyone have any ideas on this question? -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Friday, December 16, 2005 11:58 AM To: CF-Talk Subject: CFAja

RE: CFAjax question: [Object Error] in IE, works fine in FF

2005-12-16 Thread Andy Matthews
Anyone have any ideas on this question? -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Friday, December 16, 2005 11:58 AM To: CF-Talk Subject: CFAjax question: [Object Error] in IE, works fine in FF I was wondering if anyone could take a look at this thread in t

  1   2   >