Skip to content

Instantly share code, notes, and snippets.

@jobjo
Created July 6, 2011 16:20
Show Gist options
  • Save jobjo/1067651 to your computer and use it in GitHub Desktop.
Save jobjo/1067651 to your computer and use it in GitHub Desktop.
.myValidIcon
{
width : 20px;
height : 20px;
background-color: Green;
}
.myErrorIcon
{
width : 20px;
height : 20px;
background-color: Red;
}
Controls.Input ""
|> Validator.IsEmail ""
|> Enhance.WithCustomValidationIcon
{ Enhance.ValidationIconConfiguration.Default with
ValidIconClass = "myValidIcon"
ErrorIconClass = "myErrorIcon"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment