I need to format the number in Grid as $123.00 or $123.25. The input comes from a modal form.
ViewModel has these values as Double.
Neither format attempts are working, the numbers are displayed as entered.
So if the user entered 1, it should display as $1.00, but instead it displays as 1.
columns.Bound(p => p.MyNumericValue).Title("MyTitle").ClientTemplate("#= kendo.toString(MyNumericValue, '{0:0.00}') #");
columns.Bound(p => p.MyNumericValue).Title("MyTitle").Format("{0:0.##}");
Thanks.