When using the .NET MVC wrapper for our grids, we used to format our int columns like so:
columns.Bound(r => r.FileSize).Title("File Size")
.HeaderHtmlAttributes(new { @title = "File Size" })
.Format("{0:#,0}")
.Width(120);
When I upgraded from XX to XX, this no longer was working. I was able to use .Format("{0:n0}") and it worked fine. Kinda sad that this was depreciated seemingly unknowingly to developers. Did anyone else experience this break in code?