Vue-tables-2: Accessibility - Add tabindex '0' to all td

Created on 25 Oct 2019  路  7Comments  路  Source: matfish2/vue-tables-2

Add tabindex '0' to all td. This would help us to navigate through td by using tab key.

accessiblity

Most helpful comment

How to disable tabindexes on every td in client table? In my case, only tr cannot be selected by keyboard, but no cells. No appropriate option methods related to cell attrubures not found.

All 7 comments

How to disable tabindexes on every td in client table? In my case, only tr cannot be selected by keyboard, but no cells. No appropriate option methods related to cell attrubures not found.

me uno a la pregrunta de UNTONE como desabilitamos el tabindex??

use the tabbable option. Set to false
https://matanya.gitbook.io/vue-tables-2/options-api

thanks for the reply, but attaching the options that I suggested, the tabindex is still found as an attribute. I wish it would not be so that the cell is not selectable.
https://jsfiddle.net/matfish2/jfa5t4sm/
In this link also do what is suggested and it does not work. any ideas?

I have the same problem

"tabbable:true", <td tabindex="-1" class="">Zimbabwe</td>
"tabbable:false", <td tabindex="0" class="">Zimbabwe</td>
but i want: <td class="">Zimbabwe</td>
For disabled selected row and make clickable all row.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

vesper8 picture vesper8  路  6Comments

deryckoe picture deryckoe  路  3Comments

dhdmstjs picture dhdmstjs  路  6Comments

seivad picture seivad  路  3Comments

pmartelletti picture pmartelletti  路  4Comments