Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
710
Razor grid Row template and culture specific numbers formatting
posted

Hi,

as the subject says. I would like to get the number culture specific (in my case german) - like "123.233,45".
If it's possible the same with currency (not the $ in my case the €)

.Columns(column =>
      {
        column.For(x => x.date_purchased).HeaderText("Date").Width("95").Format("dd.MM.yyyy");
        column.For(x => x.ot_total).HeaderText("Total").Width("100").DataType("number").Format("###.###,##");