Server side ajax data rows not styled with themeroller
Server side ajax data rows not styled with themeroller
I am using jqueryui themeroller with server side processing.
[code]
$(function() {
$("#report_table").dataTable({
"sAjaxSource" : "/analytics/search.datatables",
"aaSorting" : [[0, 'asc']],
"aoColumns" : [
{"sName":"visitor_type"},
{"sName":"action_taken"},
],
"bServerSide" : true,
"fnServerData" : railsDatatables,
"bJQueryUI": true
});
});
[/code]
Everything comes styled except the data in the rows. Is there something special i need to do?
thx!
[code]
$(function() {
$("#report_table").dataTable({
"sAjaxSource" : "/analytics/search.datatables",
"aaSorting" : [[0, 'asc']],
"aoColumns" : [
{"sName":"visitor_type"},
{"sName":"action_taken"},
],
"bServerSide" : true,
"fnServerData" : railsDatatables,
"bJQueryUI": true
});
});
[/code]
Everything comes styled except the data in the rows. Is there something special i need to do?
thx!
This discussion has been closed.
Replies
Allan
http://datatables.net/styling/themes/smoothness
Thanks!