Moving Rows Up and Down across Pages

Moving Rows Up and Down across Pages

WoahLagWoahLag Posts: 5Questions: 0Answers: 0
edited July 2012 in General
So right now I have this:

[code]
function moveSelected(direction){
var arr = jQuery('#table_playlist tbody tr.row_selected');

for(var i=0; i

Replies

  • allanallan Posts: 63,538Questions: 1Answers: 10,476 Site admin
    To get an array of TR elements across all pages you would need to use fnGetNodes or the $ API method (i.e. table.$('tr')).

    Allan
This discussion has been closed.