Re: Tab order in a JSP

2001-11-05 Thread Mattias Jiderhamn
//Set all the readOnly here before index = 0; for(i = 0; i NrOfFields; i++) { if(field.readOnly != true) { document.form.field.tabIndex = index; index++; } else { // If you have to remove a tabIndex, you do it here... I don't // know how to do that, if you

Re: Tab order in a JSP

2001-10-31 Thread Chris Tucker
Tucker ePangea.com -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Vibha Jindal Sent: Wednesday, October 31, 2001 1:11 AM To: [EMAIL PROTECTED] Subject: Re: Tab order in a JSP No, they are not permamnently

Tab order in a JSP

2001-10-30 Thread Vibha Jindal
Hi, I am trying to set the tab order in a JSP and am using tabindex for that. The problem I am encountering is that the tab enters a readonly field and then does not tab out because the way I am making a field readonly is by using readonly and onfocus = this.blur() Can anyone help? Regards

Re: Tab order in a JSP

2001-10-30 Thread Badrinarayan K. Melkote
Hi, Do not give a tabindex for the readonly field. Give it to the fields, that u want to navigate. with regards, badri - Original Message - From: Vibha Jindal [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, October 31, 2001 11:51 AM Subject: Tab order in a JSP Hi, I am

Re: Tab order in a JSP

2001-10-30 Thread Vibha Jindal
: Re: Tab order in a JSP Hi, Do not give a tabindex for the readonly field. Give it to the fields, that u want to navigate. with regards, badri - Original Message - From: Vibha Jindal [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, October 31, 2001 11:51 AM Subject: Tab

Re: Tab order in a JSP

2001-10-30 Thread LouisVoo
How to give a tab index in the field? - Original Message - From: Vibha Jindal [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 30, 2001 11:08 PM Subject: Re: Tab order in a JSP Hi, I can do that, but the problem is that many fields are enabled / disabled on the fly