is it possible to set tab order on the entry form

is it possible to set tab order on the entry form

ehardingeharding Posts: 15Questions: 7Answers: 0

Can see any info / doc on setting tab order on the data entry form. is it possible?

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 63,852Questions: 1Answers: 10,519 Site admin
    Answer ✓

    Is this in Editor? Yes, the fields have a attr option which will set attributes on the input elements, so you can use them to set the tab index (among other properties). E.g.

    {
      label: "My field:",
      name: "myField",
      attr: {
        tabIndex: 2
      }
    }
    

    Allan

  • ehardingeharding Posts: 15Questions: 7Answers: 0

    thanks

This discussion has been closed.