[Solved] Putting tab stop and order
[Solved] Putting tab stop and order
In example http://www.datatables.net/examples/api/row_details.html I can move on display size and search box using tab but can't get to (+)/(-) images to expand the row detail. So how can I make tab go to these images so that one can reach there with tab and press enter to expand/collapse.
Thanks in Advance
Thanks in Advance
This discussion has been closed.
Replies
I solved this problem by putting button instead of images as tag doesn't have tabIndex property. Now I am struggling to get same thing done for previous/next page button.
How can i get reference to those button. Where is the code to reference those items.
Thanks
[code]
if ( !oSettings.bJUI ) {
nPrevious = document.createElement( 'div' );
nPrevious.innerHTML = '';
nNext = document.createElement( 'div' );
nNext.innerHTML = '';
}
[/code]
Also removed the four images of prev and next from the CSS file.