Select row with server side
Select row with server side
When I run the example of select row with server side processing, it is not working,
What I neet to do to make it work.
I am using this code but the event of click is not triggered
if ( $(this).hasClass('row_selected') )
$(this).removeClass('row_selected');
else
$(this).addClass('row_selected');
and it is inside the ready function
What I neet to do to make it work.
I am using this code but the event of click is not triggered
if ( $(this).hasClass('row_selected') )
$(this).removeClass('row_selected');
else
$(this).addClass('row_selected');
and it is inside the ready function
This discussion has been closed.
Replies
The example appears to be working fine for me: http://datatables.net/examples/server_side/select_rows.html . Are you getting any errors or anything?
Allan