Hi Sir,
Is it possible format a currency negative value to:
(1.000,00) and not -1.000,00
My column code:
//COLUNA DO SALDO
$col = array();
$col["title"] = "Saldo (R$)";
$col["name"] = "saldo";
$col["align"] = "right";
$col["formatter"] = "currency";
$col["formatoptions"] = array("prefix" = "");
And negative values are displayed (for example): -234,00
Thank you!!!
Fábio Martins
Your Answer