This question is locked. New answers and comments are not allowed.
I have the follwing:
var nfmt = "{0:0,0.0}";
Html.Telerik()
.Grid<MyType>()
.Name("MyType")
.DataBinding(dataBinding => dataBinding.Ajax().Select("MyTypeAjaxBinding","MyTypeCtrler"))
.BindTo(Model.MyTypeList)
.Columns( cols =>
{
cols.Bound(ph => ph.Value).Format(nfmt);
})
.Sortable();
The number formatting shows correctly on the first server side rendering, but when I sort, the number format isn't applied.
How can I fix this?