У меня есть следующий класс, используемый для пользовательской проверки:
[AttributeUsage(AttributeTargets.Property, AllowMultiple=false, Inherited=true)]
public sealed class RequiredIfAnyTrueAttribute : ValidationAttribute, IClientValidatable
{
private const string DefaultErrorMessage = "{0} is required";
public List<string> OtherProperties { get; private set; }
public RequiredIfAnyTrueAttribute(string otherProperties)
: base(DefaultErrorMessage)
{
if (string.IsNullOrEmpty(otherProperties))
throw new ArgumentNullException("otherProperty");
OtherProperties = new List<string>(otherProperties.Split(new char[] { '|', ',' }));
}
public override string FormatErrorMessage(string name)
{
return string.Format(ErrorMessageString, name);
}
protected override ValidationResult IsValid(object value, ValidationContext validationContext)
{
if (value == null)
{
foreach (string s in OtherProperties)
{
var otherProperty = validationContext.ObjectType.GetProperty(s);
var otherPropertyValue = otherProperty.GetValue(validationContext.ObjectInstance, null);
if (otherPropertyValue.Equals(true))
return new ValidationResult(FormatErrorMessage(validationContext.DisplayName));
}
}
return ValidationResult.Success;
}
public IEnumerable<ModelClientValidationRule> GetClientValidationRules(ModelMetadata metadata, ControllerContext context)
{
var clientValidationRule = new ModelClientValidationRule()
{
ErrorMessage = FormatErrorMessage(metadata.GetDisplayName()),
ValidationType = "requiredifanytrue"
};
clientValidationRule.ValidationParameters.Add("otherproperties", string.Join("|",OtherProperties));
return new[] { clientValidationRule };
}
}
Мой ViewModel:
public class SampleViewModel
{
public bool PropABC { get; set; }
public bool PropXYZ { get; set; }
[RequiredIfAnyTrue("PropABC|PropXYZ")]
public int? TestField { get; set; }
}
Когда мой строго типизированный вид рендеринга, все работает нормально.Если выбраны PropABC или PropXYZ, тогда мне нужно ввести значение для TestField.Проверка как на стороне клиента, так и на стороне сервера является функциональной.
Однако, учитывая следующую последовательность событий:
- check PropABC
- отправить форму
- требуется проверка на стороне клиента для TestField
- снимите флажок PropABC
- проверка клиента не перезапускается, и сообщение проверки остается до отправки формы
для разрешения #5 Я бы обычно прикреплял события click к флажкам через jquery onready, чтобы подтвердить проверку.
Есть ли предпочтительный / рекомендуемый способ вручную принудительно выполнять проверку на стороне клиента, если MVC3 + ненавязчивый + jquery?