Dear Web Developers,
In the Two Column Form, we as developers sometimes get confused, which way should be implemented to move the cursor pointer from one field to next field, when end-user is pressing Tab or Enter key.
Let’s say we have 2 column form in Add page, where in the first column there are 3 fields (A, B, and C), and in the second column there are 2 fields (D and E).
Here is the form layout:
Field A … Field D
Field B … Field E
Field C
Which one you would prefer from the following two options? And please give your reason why you choose it.
- A → D → B → E → C.
- A → B → C → D → E.
Any feedback will be appreciated. Thanks.