Hi, I ma trying to add an explanation/description to the columns using a tooltip. For instance, "StaffAmount" => array(
"label" => "StaffAmount",
"cssStyle" => "text-align:right",
"type" => "number",
"decimals" => 2,
"footer" => "sum",
"tooltip"=>function($row){
return "Something for tooltip";
}
),
Label is stall amount, tooltip would describe how it gets calculated. Is this something I can do with the DataTable ? If not per row, can I do this on the header of the table somehow ?
thanks