Selecting multiple rows with server side processing

Selecting multiple rows with server side processing

tobietobie Posts: 1Questions: 0Answers: 0
edited March 2013 in General
Hi,

I noticed the example at http://datatables.net/examples/server_side/select_rows.html uses a deprecated jquery method .live()

To fix if you are using a newer version of jquery, replace
[code]$('#example tbody tr').live('click', function () {[/code]
with
[code]$(document).on("click", "#example tbody tr", function(){[/code]
This discussion has been closed.