RE: [CFCDev] Creating User Controls - cfc or tag?

2006-01-19 Thread Peter Bell
] On Behalf Of Nando Sent: Thursday, January 19, 2006 3:28 AM To: CFCDev@cfczone.org Subject: RE: [CFCDev] Creating User Controls - cfc or tag? Others may argue against the practice, but i've used CFC's to generate HTML blocks for a long time, and i'm pretty happy with it. Of course, these CFCs

RE: [CFCDev] Creating User Controls - cfc or tag?

2006-01-19 Thread Nando
:[EMAIL PROTECTED] Behalf Of Peter Bell Sent: Thursday, January 19, 2006 1:52 PM To: CFCDev@cfczone.org Subject: RE: [CFCDev] Creating User Controls - cfc or tag? Great idea! I typically only generate a handful of widgets for any given application (most people want most of their tables, forms

RE: [CFCDev] Creating User Controls - cfc or tag?

2006-01-19 Thread Duba, Phillip
PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nando Sent: Thursday, January 19, 2006 3:28 AM To: CFCDev@cfczone.org Subject: RE: [CFCDev] Creating User Controls - cfc or tag? Others may argue against the practice, but i've used CFC's to generate HTML blocks for a long time, and i'm pretty happy

RE: [CFCDev] Creating User Controls - cfc or tag?

2006-01-19 Thread Peter Bell
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nando Sent: Thursday, January 19, 2006 3:28 AM To: CFCDev@cfczone.org Subject: RE: [CFCDev] Creating User Controls - cfc or tag? Others may argue against the practice, but i've used CFC's to generate HTML blocks for a long time, and i'm

RE: [CFCDev] Creating User Controls - cfc or tag?

2006-01-19 Thread Duba, Phillip
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Peter Bell Sent: Thursday, January 19, 2006 12:07 PM To: CFCDev@cfczone.org Subject: RE: [CFCDev] Creating User Controls - cfc or tag? How do you find performance? My first app gen dynamically generated forms from scratch. For each field

RE: [CFCDev] Creating User Controls - cfc or tag?

2006-01-19 Thread Peter Bell
order through the pages and/or incomplete wizard transactions? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Duba, Phillip Sent: Thursday, January 19, 2006 12:34 PM To: CFCDev@cfczone.org Subject: RE: [CFCDev] Creating User Controls - cfc or tag

RE: [CFCDev] Creating User Controls - cfc or tag?

2006-01-19 Thread Cody Caughlan
To: CFCDev@cfczone.org Subject: RE: [CFCDev] Creating User Controls - cfc or tag? Thanks for the hint on building strings using an array and an array to list. I had read that the java list operations were expensive so that's a great tip! Personally I allow for XML import but keep my primary meta-data

RE: [CFCDev] Creating User Controls - cfc or tag?

2006-01-19 Thread Nolan Erck
Office (916) 569-2024 Fax www.schools.org -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nando Sent: Thursday, January 19, 2006 12:28 AM To: CFCDev@cfczone.org Subject: RE: [CFCDev] Creating User Controls - cfc or tag? Others may argue against

RE: [CFCDev] Creating User Controls - cfc or tag?

2006-01-19 Thread Nando
PROTECTED] Behalf Of Nolan Erck Sent: Thursday, January 19, 2006 8:14 PM To: CFCDev@cfczone.org Subject: RE: [CFCDev] Creating User Controls - cfc or tag? Nando, do you happen to have a source code example of what you did (either your own code or a URL that you can provide)? I like the sound

RE: [CFCDev] Creating User Controls - cfc or tag?

2006-01-19 Thread Duba, Phillip
, 2006 1:52 PM To: CFCDev@cfczone.org Subject: RE: [CFCDev] Creating User Controls - cfc or tag? Thanks for the hint on building strings using an array and an array to list. I had read that the java list operations were expensive so that's a great tip! Personally I allow for XML import but keep my

RE: [CFCDev] Creating User Controls - cfc or tag?

2006-01-19 Thread Peter Bell
AM To: CFCDev@cfczone.org Subject: RE: [CFCDev] Creating User Controls - cfc or tag? Thanks for the hint on building strings using an array and an array to list. I had read that the java list operations were expensive so that's a great tip! Personally I allow for XML import but keep my primary

[CFCDev] Creating User Controls - cfc or tag?

2006-01-18 Thread Peter Bell
Hello All, My introduction to OOP in CF is a rewrite of a CF5 application generator in CFMX 7. I have a pretty good domain object model but am having trouble finding best practices for the UI. All of the controller (index.cfm) and model (various cfc's with a simple façade abstracting the

Re: [CFCDev] Creating User Controls - cfc or tag?

2006-01-18 Thread Barney Boisvert
I generally write my UI widgets as custom tags. Keeps things simple, since my view templates are all simple markup, be it HTML or CFML custom tags. Tags are also easy for designers to understand, since they'll already be familiar with nesting, attributes, and the like. How those custom tags

Re: [CFCDev] Creating User Controls - cfc or tag?

2006-01-18 Thread Barry Beattie
here! here! after comming off a large project that uses this method I highly recommend it. bottom line: view layer as cfm's and custom tag librarys cfimport taglib =whatever with all data being sent to and processed by CFC's. the only time we had CFC's as part of the view layer were for flash