Hi Abu, when using the currency format option I can enter anything except the GBP £ sign, this is also true when assigning a column name, dollars $ are fine..
Below returns blank page, change to $ or # it works fine..
$col["formatter"] = "currency";
$col["formatoptions"] = array("prefix" => "£",
"suffix" => '',
"thousandsSeparator" => ",",
"decimalSeparator" => ".",
"decimalPlaces" => 2);
This also returns blank page ; $col["title"] = "Adviser £"; // caption of column
Not a great problem, just though I'd mention it.
Thanks
1 Answers
Make sure your file encoding is utf8.
After that it should work as normal. see image:
Your Answer