[PHP] Tab index

2003-10-22 Thread Hardik Doshi
Hi Group,

Currently i have setup the tabindex on the drop down
menu but it doesn't work on mozilla and safari
browser. It is only working with the IE. Tab index on
the text box and textarea fields are working perfectly
on cross browser. Does any one has a clue why the
tabindex on the drop down menu doesn't work on certain
browsers?

Thanks

Hardik Doshi

__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Tab index

2003-10-22 Thread Payne
Hardik Doshi wrote:

Is it DHTML or Javascript? Becaucse DHTML doesn't work the same way on 
Browser. You will need to do a search on google DHTML and Netscape and 
Safari, you make want to use Javascript because then any browser can 
read it.

Payne

Hi Group,

Currently i have setup the tabindex on the drop down
menu but it doesn't work on mozilla and safari
browser. It is only working with the IE. Tab index on
the text box and textarea fields are working perfectly
on cross browser. Does any one has a clue why the
tabindex on the drop down menu doesn't work on certain
browsers?
Thanks

Hardik Doshi

__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com
 

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] Tab index

2003-10-22 Thread Hardik Doshi
I am using the HTML. Javascript is not standard of W3C
organization and that's why i don't want to use it.

Is there any other solution for setting up the
tabindex on the Drop down menu?

Thanks

Hardik

--- Payne [EMAIL PROTECTED] wrote:
 Hardik Doshi wrote:
 
 Is it DHTML or Javascript? Becaucse DHTML doesn't
 work the same way on 
 Browser. You will need to do a search on google
 DHTML and Netscape and 
 Safari, you make want to use Javascript because then
 any browser can 
 read it.
 
 Payne
 
 Hi Group,
 
 Currently i have setup the tabindex on the drop
 down
 menu but it doesn't work on mozilla and safari
 browser. It is only working with the IE. Tab index
 on
 the text box and textarea fields are working
 perfectly
 on cross browser. Does any one has a clue why the
 tabindex on the drop down menu doesn't work on
 certain
 browsers?
 
 Thanks
 
 Hardik Doshi
 
 __
 Do you Yahoo!?
 The New Yahoo! Shopping - with improved product
 search
 http://shopping.yahoo.com
 
   
 
 
 
 


__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Tab index

2003-10-22 Thread John Nichel
Hardik Doshi wrote:
I am using the HTML. Javascript is not standard of W3C
organization and that's why i don't want to use it.
Is there any other solution for setting up the
tabindex on the Drop down menu?
Thanks

Hardik
Wrong list.  Better results if you ask this question on a 
HTML/DHTML/JavaScript list.

--
By-Tor.com
It's all about the Rush
http://www.by-tor.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] Tab index

2003-10-22 Thread Ray Hunter
On Wed, 2003-10-22 at 11:07, John Nichel wrote:
 Hardik Doshi wrote:
  I am using the HTML. Javascript is not standard of W3C
  organization and that's why i don't want to use it.
  
  Is there any other solution for setting up the
  tabindex on the Drop down menu?
  
  Thanks
  
  Hardik
 
 Wrong list.  Better results if you ask this question on a 
 HTML/DHTML/JavaScript list.

Also check out groups on google, there is tons of great information
there on these types of groups.

--
Ray

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Tab Index Functionality

2001-03-30 Thread Wayne Joyner



I am interested in 
finding out how to use TAB INDEX. I have a form that I would like to order the 
sequence of field selection. The form consist of HTML with embedded PHP commands 
that retrieve data from a database to auto populate (or provide) drop down list 
boxes for the form. Is there any way I can specify the sequence of field 
selection for users wanting to tab through fields. Unfortunately, I have set the 
field label descriptions with help sensitive A HREF to a external help file 
 and these become stops in the tabbing sequence. I basically want to skip 
over the help locations when pressing the TAB key.
Any help you can provide would be greatly 
appreciated.
Wayne JoynerCSG Systems, Inc. 2525 N. 117th Avenue Mail Stop 1-TSC Omaha, NE (402) 431-7138 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


Re: [PHP] Tab Index Functionality

2001-03-30 Thread Data Driven Design

You can specify taborder by inserting a tabindex attribute into your input
tags

input type="text" name="foo" tabindex="1"
input type="text" name="foo3" tabindex="3"
input type="text" name="foo2" tabindex="2"

In this example tabing order would be 1, 3, 2

There's also an Internet Explorer only attribute  called notab


Data Driven Design
P.O. Box 1084
Holly Hill, FL 32125-1084

http://www.datadrivendesign.com
http://www.rossidesigns.net
- Original Message -
From: Wayne Joyner [EMAIL PROTECTED]
To: Php-General@Lists. Php. Net [EMAIL PROTECTED]
Sent: Friday, March 30, 2001 12:02 PM
Subject: [PHP] Tab Index Functionality


 I am interested in finding out how to use TAB INDEX. I have a form that I
would like to order the sequence of field selection. The form consist of
HTML with embedded PHP commands that retrieve data from a database to auto
populate (or provide) drop down list boxes for the form. Is there any way I
can specify the sequence of field selection for users wanting to tab through
fields. Unfortunately, I have set the field label descriptions with help
sensitive A HREF to a external help file  and these become stops in the
tabbing sequence. I basically want to skip over the help locations when
pressing the TAB key.

 Any help you can provide would be greatly appreciated.


 Wayne Joyner
 CSG Systems, Inc.
 2525 N. 117th Avenue
 Mail Stop 1-TSC
 Omaha, NE
 (402) 431-7138









 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]