I want to format the numeric values like 1,23,456
and display the data in the Grid. I modified the Grid column renderer to return the string like I mentioned above. Below is the renderer code:
String value = NumberFormat.getFormat("#,##,##0").format(123456d);
But am getting the value like following 123,456
. Could someone help me to resolve this issue.
Thanks in advance.