I have a class for create a custom validator by Fluent:
public partial class RegisterValidator : BaseLarValidator<RegisterModel>
{
public RegisterValidator(IDbContext dbContext)
{
RuleFor(x => x.UserName).NotEmpty().WithMessage("Username obbligatorio");
}
}
a class model that implement RegisterValidator validator:
[Validator(typeof(RegisterValidator))]
public class RegisterModel
{
public string UserName { get; set; }
}
and finally a htmlhelper class for override @Html.LabelFor(...) in @Html.RequiredLabelFor(...):
[SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures", Justification = "This is an appropriate nesting of generic types")]
public static MvcHtmlString RequiredLabelFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func<TModel, TValue>> expression, object htmlAttributes = null, string id = "", bool generatedId = false)
{
return LabelHelper(html, ModelMetadata.FromLambdaExpression(expression, html.ViewData), ExpressionHelper.GetExpressionText(expression), htmlAttributes, id, generatedId);
}
internal static MvcHtmlString LabelHelper(HtmlHelper html, ModelMetadata metadata, string htmlFieldName, object htmlAttributes, string id, bool generatedId)
{
string labelText = metadata.DisplayName ?? metadata.PropertyName ?? htmlFieldName.Split('.').Last();
if (String.IsNullOrEmpty(labelText))
{
return MvcHtmlString.Empty;
}
var sb = new StringBuilder();
sb.Append(labelText);
if (metadata.IsRequired)
sb.Append("<span class=\"required\"> *</span>");
var tag = new TagBuilder("label");
foreach (PropertyDescriptor prop in TypeDescriptor.GetProperties(htmlAttributes))
{
tag.MergeAttribute(prop.Name.Replace('_', '-'), prop.GetValue(htmlAttributes).ToString(), true);
}
if (!string.IsNullOrWhiteSpace(id))
{
tag.Attributes.Add("id", id);
}
else if (generatedId)
{
tag.Attributes.Add("id", html.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldId(htmlFieldName) + "_Label");
}
tag.Attributes.Add("for", html.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldId(htmlFieldName));
tag.InnerHtml = sb.ToString();
return MvcHtmlString.Create(tag.ToString(TagRenderMode.Normal));
}
The problem is that "metadata.IsRequired" in LabelHelper function always returns false, but it should return true for "UserName" property.... I think this happens because metadata.IsRequired not recognize ".NotEmpty()" in RegisterValidator class...
**
does anyone know how to solve the problem, doing so on the HtmlHelper I can see if the property is "NotEmpty ()", or by another solution?
**
Add following tag helper and then you don't need to make changes anywhere in the code. Just make use of the power of DI