I am new in JSON mode. I am trying to bind such format to model but it does not work. Anyone know this issue?
.Column(col =>
{
col.Add(c => c.Freight).Format("{0:$####.##}").HeaderText("Doller");
col.Add(c => c.Freight).Format("{0:####.## GBP}").HeaderText("GBP");
col.Add(c => c.Freight).Format("{0:$####.## JPY}").HeaderText("JPY");
col.Add(c => c.Freight).Format("{0:####.##}").HeaderText("Rupees");
}