Contact Me
Resources
Development Tips & Code Library
-
Recent Entries
Blogroll
Category Archives: Code
CFTextArea richtext editor – Bugs and Fixes
Yesterday I wrote about the cool rich text editor available in CF8 (aka FCKeditor). It was all working swimmingly until this morning. Suddenly the editor would not display on my screen. If I removed the richtext=”yes” I would get the … Continue reading
Posted in Code
Comments Off on CFTextArea richtext editor – Bugs and Fixes
CFTextArea richtext editor
I am toying with a new application that lets folks collaborate on a document online. Kind of like Basecamp’s write board but perhaps not as dynamic. I needed to build a form with a rich text editor to let the … Continue reading
Posted in Code
Comments Off on CFTextArea richtext editor
CFMail Tracker – Application
Seems like CFMail goes wonky every once in a while and decides not to work. The administrators always blame it on too much mail for the server to handle. So I decided to call them on their “theory” and build … Continue reading
Posted in Code, Coldfusion, Problems & Fixes, SQL
Comments Off on CFMail Tracker – Application
CFOUTPUT and Array result sets
Imagine you have a query that returns a few results like Product Categories sold for a given period. You might have a query like: <cfquery name=”myQ” datasource=”myDSN”> select distinct category from sales order by category. </cfquery> Your results might look … Continue reading
Posted in Code, Coldfusion
Comments Off on CFOUTPUT and Array result sets
JQuery Confirm
The standard JavaScript confirm prompt allows you to ask a question and the user can respond with ok or cancel. But suppose you want them to have the choice of sign-up and non-now? This allows you to guide the user … Continue reading