Hi , I am using koolphp table and it is rounding off one decimal place automatically to integer. How should i turn it off? I am using minimum configuration:
\koolreport\widgets\koolphp\Table::create(array(
"themeBase"=>"bs4",
"cssClass"=>array(
"table"=>"table table-striped table-bordered y-sum-table"
),
"dataSource"=>$data['first_table'],
// "columnDefs" => array(
// array("type"=> "html-num", "targets" => [1])
// ),
"showFooter"=>false,
"options"=>array(
"order" => [],
"bInfo" => false,
"dom" => 'Bfrtip',
"buttons" => [
array(
'extend'=>'excelHtml5',
'text'=>'<i class="fa fa-file-excel-o"></i>',
'titleAttr'=>'Excel'
)
],
)
));