Hi,
Any option to have the footer row <tfoot> columns aligned the same way as the columns in the datatable? the "cssClass" seem to work only on <td> that are part of <tbody>?
"cssClass"=>array(
"table"=>"hover stripe row-border compact",
"td"=>function($row,$colName)
{
if (in_array($colName, array("column1")))
{
return "text-left";
}
if (in_array($colName, array("column2","column3")))
{
return "text-right";
}
},
"th"=>function($colName)
{
if (in_array($colName, array("column2","column3")))
{
return "text-right";
}
},
Thx for the advice Jure