Tab to next editable field does not work

Tab to next editable field does not work

Hildeb67Hildeb67 Posts: 64Questions: 18Answers: 1

Hello,
I have a table with editor. Unfortunately, I can't use the TAB key to jump to the next field in the editor. Where is my mistake?

The code can be found in the appendix

greetings Chris

This question has an accepted answers - jump to answer

Answers

  • kthorngrenkthorngren Posts: 21,315Questions: 26Answers: 4,948

    I'm unable to download the file. Are you using the KeyTable extension like this example?

    Maybe copy and paste your code into this thread. Mak sure to use Markdown code formatting.

    Kevin

  • Hildeb67Hildeb67 Posts: 64Questions: 18Answers: 1

    Unfortunately my code is too long to include in this thread

    here is the link to my page

    https://feuerwehr.diedorf.bayern/FOM/jugend_pflegen.php

  • kthorngrenkthorngren Posts: 21,315Questions: 26Answers: 4,948
    edited October 20

    Actually a test case is a better than the source code :smile: Your select.selector is set to selector: 'td'. This is probably not allowing the KeyTable to be activated when clicking the desired cells. Try changing it to selector: 'td:first-child' so the checkbox is the only option to select a row. Like this example.

    Kevin

  • Hildeb67Hildeb67 Posts: 64Questions: 18Answers: 1

    Unfortunately it didn't have the desired result

  • kthorngrenkthorngren Posts: 21,315Questions: 26Answers: 4,948
    Answer ✓

    Maybe change the test case to use my suggestion. Currently it has this:

            select: {
                style:    'os',
                selector: 'td' //Ganze Tabellenzeile markieren
                //selector: 'td:first-child'
            },
    

    Kevin

Sign In or Register to comment.