hey i have a datatable on which i use a formatvalue to convert the data to links , but i dont want it to come on footer , how do i achieve that. This is that particular column in the columns array and the thing i tried which didnt work.
"Serial Count"=>[
"footer"=>"sum",
"formatValue"=>function($value,$row) {
if($row[$name] != 'Total')
return "<a href='javascript:void(0)' onclick= 'getSerialDetail(0,0,0,{$row['meta_data']},2)'>$value</a>";
else
return $value;
},
]
i dont want my sum to be a link .