I would to be able to edit/add an item without having to edit the price every time. Currently i have to always remove ,00 or change the , into a . in or for the price input to validate.
If i change the web.config file
<globalization enableClientBasedCulture="false" culture="en-US" uiCulture="en-US"/>
Then it works. The editable input is displayed with the default value of .00. However i am not in America and will not be using dollars.
My model is
[Required(ErrorMessage="Please add a price.")]
[DataType(DataType.Currency)]
public decimal Price { get; set; }