@using LeafWeb.Web.Utility @model object @{ string guidID = Guid.NewGuid().ToString(); }
@Html.LabelFor(m => m, new { @class = "control-label" })
@Html.TextAreaFor( m => m, 8, 15, ViewBag.ClearTextField == true ? new { @class = "form-control mdd_editor clear-text-field", data_mdd_preview = "#" + guidID } : new { @class = "form-control mdd_editor", data_mdd_preview = "#" + guidID }) @Html.ValidationMessageFor(m => m, null, new { @class = "help-block" })