Tuesday, May 22, 2012    
Home My Books Blog ColdFusion About Me Back    

Calendar
<< Sep 2007 >>
S M T W T F S
            1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30            

Search

Categories
 • Acrobat (5) [RSS]
 • Adobe (117) [RSS]
 • AdobeMAX06 (45) [RSS]
 • AdobeMAX07 (59) [RSS]
 • AdobeMAX08 (66) [RSS]
 • AdobeMAX09 (39) [RSS]
 • AdobeMAX10 (34) [RSS]
 • AdobeMAX11 (28) [RSS]
 • AdobeMAX13 (1) [RSS]
 • AIR (299) [RSS]
 • Appearances (217) [RSS]
 • Books (86) [RSS]
 • CFEclipse (15) [RSS]
 • Cloud (1) [RSS]
 • ColdFusion (1483) [RSS]
 • ColdFusion Builder (23) [RSS]
 • Data Services (43) [RSS]
 • Fish Tank (5) [RSS]
 • Flash (368) [RSS]
 • Flex (565) [RSS]
 • Home Automation (5) [RSS]
 • HTML5 (36) [RSS]
 • JavaScript (3) [RSS]
 • Jobs (133) [RSS]
 • jQuery (15) [RSS]
 • JRun (14) [RSS]
 • Labs (63) [RSS]
 • LiveCycle (37) [RSS]
 • MAX (285) [RSS]
 • Mobile (257) [RSS]
 • PhoneGap (17) [RSS]
 • Regular Expressions (19) [RSS]
 • RIA (21) [RSS]
 • SQL (45) [RSS]
 • Stuff (554) [RSS]
 • Tips (CF Studio) (80) [RSS]
 • Tips (CF) (795) [RSS]
 • Tips (Dreamweaver) (91) [RSS]
 • Tips (Flex Builder) (2) [RSS]
 • Using CF (167) [RSS]

Other BLOGs
 • Charlie Arehart
 • Lee Brimelow
 • Ray Camden
 • Christophe Coenraets
 • Sean Corfield
 • Mihai Corlan
 • Cornel Creanga
 • Mark Doherty
 • John Dowdell
 • Danny Dura
 • Enrique Duvos
 • Steven Erat
 • Kevin Hoyt
 • Serge Jespers
 • Adam Lehman
 • Duane Nickull
 • Miti Pricope
 • Andrew Shorten
 • Ryan Stewart
 • James Ward
 • Greg Wilson
 • Full As A Goog

RSS Feeds
 • Feed
 • Subscribe

Join my mailing list and find out about new books and other topics of interest.

Thoughts, ideas, tips, musings, and pontifications (not necessarily in that order) by Ben Forta ...
NOTE: This is my personal blog, and the opinions and statements voiced here are my own.

Viewing By Entry / Main
September 24, 2007

ColdFusion 8 Get Started Tutorial Posted

A "Get Started with ColdFusion 8 in 30 Minutes" tutorial has been posted online, and can be downloaded from ColdFusion Developer Center Downloads page. The PDF tutorial steps are also online.

Comments
Hey Ben, I don't know if you've pointed this out, but readers will also want to know that there was another important update to that getting started area (posted after the official release of CF8).

The "Code Snippets by Feature" section, which many will recall from CF7 offered live running examples of most tags and functions, has been substantially updated for CF8 and now included nearly every new tag and function in CF8.

This was part of a couple of things released a few weeks ago in the "Getting Started Experience" for CF8 on the CF site. Folks may have noticed that the official release (what they downloaded) had no such changes foir CF8 in the local version of this (accessible from the CF Admin), but it is available on the web site (like that PDF, which wasn't updated as much). More at:

http://carehart.org/blog/client/index.cfm/2007/8/2...
# Posted By Charlie Arehart | 9/24/07 11:53 AM
Hi Ben
When will you publish your CF 8 book?

Thanks
# Posted By A wanna be CF developer | 9/28/07 3:27 AM
To wannabe, the CF8 Getting Started book (first of 3 in the Construction Kit series) is already published (http://www.forta.com/books/032151548X/). The next 2 volumes are coming.

(Perhaps you're confused because Ben doesn't list it on the front of his books page, at http://www.forta.com/books/. I leave that here for Ben to consider. Ben, you can delete this portion of my comment if/when you do.)
# Posted By Charlie Arehart | 9/28/07 11:03 AM
Hi Charlie
Thanks for your information.
# Posted By A wanna be CF developer | 10/2/07 1:54 AM
Hi Ben,

I'm jazzing up my web-apps now that I have CF8 in hand and I have a question regarding the AutoPopulate text field.

Since this code works fine:
<!--- Get data --->
<cfquery datasource="conferences" name="name">
   SELECT       l_name AS wholeName
   
   FROM       CONF_ATTENDEE_TBL
</cfquery>

<!--- Auto Suggest --->

<cfform>
   Your Name:    
   <!--- Populate auto-suggest control --->
   <cfinput type="text" name="attendeeName" autosuggest="#ValueList(name.wholeName)#">
</cfform>

Why doesn't this work? (the SQL returns the concat. string fine when run alone)
<!--- Get data --->
<cfquery datasource="conferences" name="name">
   SELECT       l_name+f_name AS wholeName
   
   FROM       CONF_ATTENDEE_TBL
</cfquery>

<!--- Auto Suggest --->

<cfform>
   Your Name:    
   <!--- Populate auto-suggest control --->
   <cfinput type="text" name="attendeeName" autosuggest="#ValueList(name.wholeName)#">
</cfform>
# Posted By Paul | 10/25/07 6:15 PM
Sorry Folks..... false alarm.

I didn't think to check my data and look for JavaScript errors. I was hitting an old Development DB that had bad names in it like: O'Connor The single tick was killing the JavaScript ;-)

However, good reminder for all programmers, remember ALL user data is EVIL and must be filtered BEFORE you store it in a DB...
# Posted By Paul | 10/29/07 5:00 PM

  © Copyright 1997-2009 Ben Forta, All Rights Reserved