8452a9cce0
Update unobtrusive Validation
15 lines
387 B
Plaintext
15 lines
387 B
Plaintext
@using System.Globalization
|
|
@model decimal?
|
|
@{
|
|
Layout = "_FieldLayout.cshtml";
|
|
}
|
|
<div class="input-group">
|
|
<span class="input-group-append">
|
|
€@Html.TextBox(
|
|
"",
|
|
Model == null
|
|
? ""
|
|
: string.Format(CultureInfo.CurrentCulture, "{0:F2}", ViewData.ModelMetadata.Model))
|
|
</span>
|
|
</div>
|