How can I set a certain tabindex values for Editor's inputs?

How can I set a certain tabindex values for Editor's inputs?

VyacheslavVyacheslav Posts: 70Questions: 27Answers: 0

Would be nice to set tabindex something like this:

{ label: 'Last name', name: 'customers.last_name', tabindex: 10 }

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 61,822Questions: 1Answers: 10,129 Site admin
    Answer ✓

    Each field type has an attr option which you can use to set this information. For example:

    {
      label: 'Name:',
      name: 'name',
      attr: {
        tabindex: 10
      }
    }
    

    See the field reference documentation for details.

    Allan

  • VyacheslavVyacheslav Posts: 70Questions: 27Answers: 0

    Thanks a lot!

This discussion has been closed.