datatable search input tabindex is wrong
datatable search input tabindex is wrong
gdwolgast
Posts: 4Questions: 0Answers: 0
I have a jsp page that has 3 datatables. It also has several tabbable controls (input, anchors, etc) separate from the tables as well as anchors within the tables. I have tabindex on all the tabbable controls. When tabbing through the rendered document, the search inputs on the 3 tables are the last items tabbed. Is there a way to get the search boxes to be in tab order by giving them an explicit tabindex?
This discussion has been closed.
Replies
Allan
You can only use it when you call $(...).dataTable({ ... }); for the first time for a given table. If that isn't enough for you, then you can alter the attributes using standard jQuery calls with $(...).attr();
Allan