How to tab between tables using KeyTable when the first column is not enabled

How to tab between tables using KeyTable when the first column is not enabled

BingCommanderBingCommander Posts: 5Questions: 3Answers: 0

I have a page with several tables on it. KeyTable is enabled on all of them, and I can tab from one table to the next as long as column 0 is enabled:

keys: {
                    editor: tableEditorPair.editor,
                    columns: [0, 1, 2, 3, 4]
                },

When I disable column 0, I can no longer tab between tables:

keys: {
                    editor: tableEditorPair.editor,
                    columns: [1, 2, 3, 4]
                },

I have tried setting a default cell using the focus option, but that doesn't help. Is there some event I could listen for and override?

This question has accepted answers - jump to:

Answers

  • colincolin Posts: 15,240Questions: 1Answers: 2,599
    Answer ✓

    Hi @BingCommander ,

    Yep, I can see that here. Odd. I've raised a ticket (DD-809) - we'll take a nose and get back to you,

    Cheers,

    Colin

  • allanallan Posts: 63,480Questions: 1Answers: 10,467 Site admin
    Answer ✓

    Fixed here. Thanks for the test case! The nightly will be updated shortly with the fix and it will be carried in 2.5.1.

    Allan

This discussion has been closed.