CF Tab Order???

2004-10-01 Thread Donna French
Okay, I am probably wanting too much - but is there a way to set the tab order on a CF page like in VB.NET? I have a form with lots of text fields and need to set the order. TIA! -- Donna French [EMAIL PROTECTED] [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

RE: CF Tab Order???

2004-10-01 Thread Burns, John D
That's actually html not vb or cf. I think the property on the input tag is taborder or something like that. John -Original Message- From: Donna French [mailto:[EMAIL PROTECTED] Sent: Friday, October 01, 2004 1:58 PM To: CF-Talk Subject: CF Tab Order??? Okay, I am probably wanting too

RE: CF Tab Order???

2004-10-01 Thread Tangorre, Michael
From: Donna French [mailto:[EMAIL PROTECTED] Okay, I am probably wanting too much - but is there a way to set the tab order on a CF page like in VB.NET? I have a form with lots of text fields and need to set the order. textarea tabindex=1 name=fe1/textarea textarea tabindex=2

RE: CF Tab Order???

2004-10-01 Thread Burns, John D
Sorry, spoke too soon.It's tabindex John -Original Message- From: Donna French [mailto:[EMAIL PROTECTED] Sent: Friday, October 01, 2004 1:58 PM To: CF-Talk Subject: CF Tab Order??? Okay, I am probably wanting too much - but is there a way to set the tab order on a CF page like

Re: CF Tab Order???

2004-10-01 Thread Ray Champagne
Use tabindex=1 (2, 3,4, etc) in your form fields.That should work Ray At 01:58 PM 10/1/2004, you wrote: Okay, I am probably wanting too much - but is there a way to set the tab order on a CF page like in VB.NET? I have a form with lots of text fields and need to set the order. TIA! -- Donna

Re: CF Tab Order???

2004-10-01 Thread Jordan Michaels
Tab order doesn't really have anything to do with what server side scripting language you're using. It's set using regular old HTML. EG: input type=text name=TF1 tabindex=1 input type=text name=TF2 tabindex=2 etc etc etc HTH, -- Warm regards, Jordan Michaels Vivio Technologies

Re: CF Tab Order???

2004-10-01 Thread Donna French
cool - didn't know if such animal was possible in HTML or not you guys/gals are the bomb! ~ Donna - Original Message - From: Tangorre, Michael [EMAIL PROTECTED] Date: Fri, 1 Oct 2004 14:06:28 -0400 Subject: RE: CF Tab Order??? To: CF-Talk [EMAIL PROTECTED] From: Donna French [mailto

Re: CF Tab Order???

2004-10-01 Thread Bryan Stevenson
Some tabindex advice... use 10,20,30,40,etc. You WILL re-arrange your form and if there is 10 between each you can move 'em around without re-ordering EVERYTHING ;-) Cheers...and happy tabindexing Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc.

Re: CF Tab Order???

2004-10-01 Thread Donna French
good suggestion - and one i'm sure i'll thank you many times for in the future! ;-) donna - Original Message - From: Bryan Stevenson [EMAIL PROTECTED] Date: Fri, 1 Oct 2004 11:10:49 -0700 Subject: Re: CF Tab Order??? To: CF-Talk [EMAIL PROTECTED] Some tabindex advice... use