[Solved] Putting tab stop and order

[Solved] Putting tab stop and order

anjibmananjibman Posts: 115Questions: 10Answers: 0
edited November 2011 in General
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

Replies

  • anjibmananjibman Posts: 115Questions: 10Answers: 0
    Ok

    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
  • anjibmananjibman Posts: 115Questions: 10Answers: 0
    edited September 2010
    This one is also solved. I did following change in 'if' block on line 264 of jquery.dataTables.js file :
    [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.
This discussion has been closed.