Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    orientation of formitem placement in the form

    Hi,

    I am trying to use keyboard navigation inside of the hand created dynamic form and I would like to change order of the included items from horizontal order (which is default)
    Code:
     1   2
     3   4
     5   6
    into vertical to first go through whole columns and only than jump into another one. like this:
    Code:
     1   4
     2   5
     3   6
    Is there some method how to achieve/set this automatically on the form or do I have to do it manually using (get)setTabIndex() method on each form item?

    #2
    Use setTabIndex().

    Comment

    Working...
    X