Add registration workflow
Update unobtrusive Validation
This commit is contained in:
@@ -1,17 +1,10 @@
|
||||
@using LeafWeb.WebCms.Utility
|
||||
@model float?
|
||||
|
||||
@{
|
||||
float f;
|
||||
f = !Model.HasValue ? 0.0f : Model.Value;
|
||||
Layout = "_FieldLayout.cshtml";
|
||||
|
||||
var f = Model ?? 0.0f;
|
||||
}
|
||||
|
||||
<div class="form-group@(Html.ValidationErrorFor(m => m, " has-error"))">
|
||||
@Html.LabelFor(m => m)
|
||||
<div class="input-group">
|
||||
@Html.TextBox(
|
||||
"", f,
|
||||
ViewBag.ClearTextField == true ? new { @class = "form-control clear-text-field input-block-level" } : new { @class = "form-control input-block-level" })<span class="input-group-addon">0,00</span>
|
||||
</div>
|
||||
@Html.ValidationMessageFor(m => m, null, new { @class = "form-text" })
|
||||
</div>
|
||||
@Html.TextBox("", f)
|
||||
<span class="input-group-append">0,00</span>
|
||||
|
||||
Reference in New Issue
Block a user