user-generated rich text on coldfusion page

2010-02-10 Thread Craig Buckley
My (non-html-writing) customer wants to use ms-word to generate a portion of a coldfusion page. The idea is they can generate a file (.doc or .rtf or whatever) that I include on the page. I've looked at various tags including cfcontent, cfdocument, cfinclude to try to find out how to include

cf8 vista ms-sql 2005 can't create dsn

2008-08-06 Thread Craig Buckley
I can access ms-sql using sql authentication with user / pw just fine so I know all the IP and other sql configuration are OK. I know I've got the port set correctly (to 5653 in my case). When I try to create my datasource using the ms sql driver it fails with a "No more data available to read

cfgrid cell edit against database list

2008-03-14 Thread Craig Buckley
I want to validate an ajax'd html cfgrid entered value against a database. I basically want to run the query "select name from file where name = #entered value# before commiting the entry to the database. if the #query.recordcount# comes back zero then I know I have a bad value. I've tried to

Re: calling cfreport from within java-instantiated cfc

2007-12-14 Thread Craig Buckley
> I have a cfinput, type="button" that has a onclick="callreport()". > Function "callreport" instantiates a cfc called "metricreport.cfc". > Metricreport.cfc produces either a csv file or a cfreporter output. > The creation of the csv file works fine using cffile tags in > metricreport.cfc.

calling cfreport from within java-instantiated cfc

2007-12-13 Thread Craig Buckley
I have a cfinput, type="button" that has a onclick="callreport()". Function "callreport" instantiates a cfc called "metricreport.cfc". Metricreport.cfc produces either a csv file or a cfreporter output. The creation of the csv file works fine using cffile tags in metricreport.cfc. The does