> -----Original Message----- > From: Don L [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 19, 2008 7:38 PM > To: CF-Talk > Subject: Re: "Voodoo" programming case one > > Thanks. You're right, using class is a standard approach, however, the > new CFWINDOW tag is nice but quite picky and I have more than one > cfwindow on the same page, so, inline js tends to work better for my > case...
Well... you can change just the width property of the column as easily as you can change the class name using the script Isaac provided (actually, at worst, you'd need to loop over the cells and set the width... but you should be able to do that to just a single cell and have it work). You don't NEED to use classes. But they do make it simpler to understand. Also note that while, technically, style declarations should be in the HEAD all major browsers (and all minor ones that I know of) accept them inline as well. So inline away! Note that IE 6 has a weird behavior in some cases (specifically where you're "including" new content into a container on a page). If it looks like your included content is ignoring style declarations try moving the style information to the bottom of the page. I describe the issue here: http://www.depressedpress.com/Content/Development/JavaScript/Articles/Quirk_ IncludeStyles/Index.cfm Jim Davis ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:301617 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

