My server converts float into a string using comma and then jquery alerts, that this float's format is incorrect (it requires dot). I'm not familiar with this auto generated jquery validation script and I don't know where to change it, so I'm asking here.
Here's my code and a pic of alert.
@model NerdDinner.Models.Dinner
(...)
<div class="editor-label">
@Html.LabelFor(model => model.Longitude)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Longitude)
@Html.ValidationMessageFor(model => model.Longitude)
</div>
Thanks.