Hello,
I run in the same problem. I have createt a new project via wizard and added a data access domain model. I have follwed the instructions from http://docs.telerik.com/kendo-ui/aspnet-mvc/globalization. But I still get "." as decimal seperator.
To dig deeper, I have downloaded the sample project for VS2013 today and I get the same error after changing the datatype of the unitprice fom DataType.Currency to decimal (...\Kendo.Mvc.Examples\Models\ProductViewModel.cs):
[DisplayName(
"Unit price"
)]
//[DataType(DataType.Currency)]
[DataType(
"decimal"
)]
[Range(0,
int
.MaxValue)]
public
decimal
UnitPrice
{
get
;
set
;
}
Inline and PopUp editing are affected.
If I change the DataType in my solution to DateType.Currency a "," i schowen as decimal seperator.
IHow can I solve this problem?
Thanks and regards
Sascha