Re: VTML edit tag dialogs: attributes with no value?

2001-05-22 Thread Bryan LaPlante
PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, May 22, 2001 1:03 AM Subject: Re: VTML edit tag dialogs: attributes with no value? In CF Studio: Select the tag selector tab in the resources area. (Next to the help tab) Then select the little yellow gear with the hint Edit Tag Definition

Re: VTML edit tag dialogs: attributes with no value?

2001-05-22 Thread Kay Smoljak
On Tue, 22 May 2001 02:35:20 -0500, Bryan LaPlante [EMAIL PROTECTED] wrote: Use the free custom tag wizard at http://www.netwebapps.com/mytags/main.cfm .. On the last screen you get a chance to choose the type of control you want associated with your input and choosing a checkbox from the drop

RE: VTML edit tag dialogs: attributes with no value?

2001-05-22 Thread Raymond Camden
Thanks, but is there any way of doing this in the EDITORLAYOUT? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/

RE: VTML edit tag dialogs: attributes with no value?

2001-05-22 Thread Raymond Camden
:20 AM To: CF-Talk Subject: RE: VTML edit tag dialogs: attributes with no value? Thanks, but is there any way of doing this in the EDITORLAYOUT? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http

Re: VTML edit tag dialogs: attributes with no value?

2001-05-22 Thread Bryan LaPlante
: Re: VTML edit tag dialogs: attributes with no value? On Tue, 22 May 2001 02:35:20 -0500, Bryan LaPlante [EMAIL PROTECTED] wrote: Use the free custom tag wizard at http://www.netwebapps.com/mytags/main.cfm .. On the last screen you get a chance to choose the type of control you want

Re: VTML edit tag dialogs: attributes with no value?

2001-05-22 Thread Bryan LaPlante
attributes whether they are checked or not. Your input would be appreciated. Bryan - Original Message - From: Kay Smoljak [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, May 22, 2001 7:12 AM Subject: Re: VTML edit tag dialogs: attributes with no value? On Tue, 22 May 2001 02

Re: VTML edit tag dialogs: attributes with no value?

2001-05-22 Thread Kay Smoljak
it to generate the first version of the file, then tweaked the results by hand. Thanks! K. - Original Message - From: Kay Smoljak [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, May 22, 2001 7:12 AM Subject: Re: VTML edit tag dialogs: attributes with no value? On Tue, 22 May

Re: VTML edit tag dialogs: attributes with no value?

2001-05-22 Thread Kay Smoljak
On Tue, 22 May 2001 08:24:30 -0400, Raymond Camden [EMAIL PROTECTED] wrote: Kay, for some reasyon my reply got deleted. Thanks, but is there any way of doing this in the EDITORLAYOUT? What exactly do you mean? Do you mean you want the tag editor to not use a checkbox? Sorry, I'm not getting

RE: VTML edit tag dialogs: attributes with no value?

2001-05-22 Thread Raymond Camden
Sorry, I knew I'd have trouble making the actual problem clear. I have a tag that has attributes that have no values. The effect is applied depending on whether the attribute is present or not, not on it's value. I'm trying to make an edit tag dialog that will preferably output attributes

Re: VTML edit tag dialogs: attributes with no value?

2001-05-22 Thread Kay Smoljak
On Tue, 22 May 2001 09:50:48 -0400, Raymond Camden [EMAIL PROTECTED] wrote: Kay, I had no problems understanding that part. Did you see my first response about WIZIF? That would more than handle outputting TEXT_BOLD only if it is needed. Bryan's email was pretty much the same as well. OK, I'll

RE: VTML edit tag dialogs: attributes with no value?

2001-05-22 Thread Dave Watts
Kay, I had no problems understanding that part. Did you see my first response about WIZIF? That would more than handle outputting TEXT_BOLD only if it is needed. Bryan's email was pretty much the same as well. OK, I'll have to try it tomorrow at work. Thanks for your reply and

RE: VTML edit tag dialogs: attributes with no value?

2001-05-21 Thread Raymond Camden
You can do a conditional output by using WIZIF So, your VTML portion of the TAGLAYOUT portion can do this: mytag WIZIF fieldname EQ 'true'TEXT_BOLD = 1/WIZIF This way it would only show up if true, not false or not selected at all.

Re: VTML edit tag dialogs: attributes with no value?

2001-05-21 Thread Kay Smoljak
On Mon, 21 May 2001 08:23:08 -0400, Raymond Camden [EMAIL PROTECTED] wrote: You can do a conditional output by using WIZIF So, your VTML portion of the TAGLAYOUT portion can do this: mytag WIZIF fieldname EQ 'true'TEXT_BOLD = 1/WIZIF This way it would only show up if true, not false or not

Re: VTML edit tag dialogs: attributes with no value?

2001-05-21 Thread robrusher
. - Original Message - From: Kay Smoljak [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, May 21, 2001 9:48 PM Subject: Re: VTML edit tag dialogs: attributes with no value? On Mon, 21 May 2001 08:23:08 -0400, Raymond Camden [EMAIL PROTECTED] wrote: You can do