Selecting multiple rows with server side processing
Selecting multiple rows with server side processing
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]
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.