views:

136

answers:

1

When the record count in jqGrid exceeds 1000, there is a visible space between the hundreds and thousands digits. See image below (taken from the jqGrid demo page)

alt text

Is there a way to remove this space, or replace it with with a standard thousands separator (comma or other)?

+2  A: 

You can change the pre-defined formatter options. Here is a link:

http://www.trirand.com/jqgridwiki/doku.php?id=wiki:predefined_formatter

Bradley Mountford
Looks like this formatter works only for cell content and not for the built in row/pages control.
Ron Harlev
@Ron Harlev: Bradley Mountford wrote do correct information. If you redefine `$.jgrid.formatter.integer` as following `$.jgrid.formatter.integer = {thousandsSeparator: ""};` you will see all integers in jqGrid inclusive the total records number formated without blanks as the separator of thousands.
Oleg