I tried to use GreaterThen validator and it looks like it doesn't support client-side validation. Is there a list of FluentValidation validators which support client-side validation?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

The list of validators supported on the client is on this page and are as follows:

  • NotNull/NotEmpty (required)
  • Matches (regex)
  • InclusiveBetween (range)
  • CreditCard
  • Email
  • EqualTo (cross-property equality comparison)
  • Length
link|improve this answer
Oh, how I missed it... Is there any specific reason why GreaterThan and similar validators are not supported on client-side? – Idsa Jul 31 '11 at 8:31
@Idsa: Quoted from fluentvalidation.codeplex.com/discussions/256069: "The only validators that are client-side enabled out of the box are those that directly correspond to MVC's built-in client-side validators." – Marius Schulz Jan 14 at 0:55
feedback

So far i know there is no list, you could create your own client side validator so create that createrthen works also on client side

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.