Using jquery on items not in the current page

Using jquery on items not in the current page

dsanchezdsanchez Posts: 5Questions: 1Answers: 0

If I use jQuery to get the value of a select I get "" if the object is not on the currently visible page.

Replies

  • kthorngrenkthorngren Posts: 21,173Questions: 26Answers: 4,923

    Use cell().node() to get the cell from Datatables which can be used as the jQuery selector. Something like $( cell(row, col).node() ).val().

    Kevin

This discussion has been closed.