In the checkout if you press the tab key to tab from field to field the cursor focus does not follow the order of the entry boxes.
This was reported by a client today and is the same in default store - looks like a bug?
EDIT:
This is apparent only when the Salutation and Company fields are used. tabindex is not used on those fields.
The fix may be (untested) to add the following to the relevant input fields:
InvoiceSalutation
tabindex="NETQUOTEVAR:INVOICEPROMPT000TABINDEX"
DeliverySalutation
tabindex="NETQUOTEVARELIVERYPROMPT000TABINDEX"
InvoiceCompany
tabindex="NETQUOTEVAR:INVOICEPROMPT003TABINDEX"
DeliveryCompany
tabindex="NETQUOTEVARELIVERYPROMPT003TABINDEX"
But do those NQVs exist?
EDIT2:
Presumably all the tabindex NQVs could just be replaced by a simple tab index number anyway, such as 1, 2, 3, etc.?
This was reported by a client today and is the same in default store - looks like a bug?
EDIT:
This is apparent only when the Salutation and Company fields are used. tabindex is not used on those fields.
The fix may be (untested) to add the following to the relevant input fields:
InvoiceSalutation
tabindex="NETQUOTEVAR:INVOICEPROMPT000TABINDEX"
DeliverySalutation
tabindex="NETQUOTEVARELIVERYPROMPT000TABINDEX"
InvoiceCompany
tabindex="NETQUOTEVAR:INVOICEPROMPT003TABINDEX"
DeliveryCompany
tabindex="NETQUOTEVARELIVERYPROMPT003TABINDEX"
But do those NQVs exist?
EDIT2:
Presumably all the tabindex NQVs could just be replaced by a simple tab index number anyway, such as 1, 2, 3, etc.?
Comment