sorting - jQuery datatables execute code after onSort event -


i have code (which works):

    $('#rooms').datatable({         "bfilter": false,         "bpaginate": false,         "bautowidth": true,         "binfo": false     }); 

what's working user can sort html table clicking on column header. however, after sort complete, want execute code:

    $("#rooms tr:even").css("background-color", "#eeeeee");     $("#rooms tr:odd").css("background-color", "#ffffff"); 

how can so?


Comments

Popular posts from this blog

Python Kivy ListView: How to delete selected ListItemButton? -

asp.net mvc 4 - A specified Include path is not valid. The EntityType '' does not declare a navigation property with the name '' -