I can't seem to get any client side validation working on a MVC 2 RC app.
My model has the following:
public class ExampleModel
{
[Required(ErrorMessage="Test1 is required")]
[DisplayName("Test1")]
public string Test1 { get; set; }
[Required(ErrorMessage="Test2 is required")]
[DisplayName("Test2")]
public strin...
morning
i can't get the input-validation-error css to work when i have a class already for the input box.
<%=Html.TextBox("FirstName", null, new { @Class = "text" })%>
<%=Html.ValidationMessage("FirstName", new { @style = "color: red;", @Class = "errorInValid" })%>
if i take out new { @Class = "text" } then
.input-validation-error
{...
I'm getting a "formElement is null" when trying to use MVC Client Validation.
Does anyone have any thoughts as to what could be the issue?
Sys.Mvc.NumberValidator.create=function(rule){return Function.createDelegate(new Sys.Mvc.NumberValidator(),new Sys.Mvc.NumberValidator().validate);}
Here is my model:
public class EmailViewModel
...
I'd like to create a custom validation attribute for MVC2 for an email address that doesn't inherit from RegularExpressionAttribute but that can be used in client validation. Can anyone point me in the right direction?
I tried something as simple as this:
[AttributeUsage( AttributeTargets.Property | AttributeTargets.Field, AllowMultip...
Does anyone have any good tutorials on using the client-validation with MVC2 and jQuery?
...
I have a simple form with standard MVC Clientside Validation (minimalist sample: one text box displayed with standard LabelFor/TextBoxFor/ValidationMessageFor sequence. The model property is marked with the [Required] and [StringLength] attributes.). It works exactly as expected if I navigate to that form (i.e., http://localhost/Batch...
What are security issues in asp.net mvc?! and does MVC solved XSS and the others?!
...
Say you have a standard ValidationSummary:
<%: Html.ValidationSummary(excludePropertyErrors: true) %>
If the ModelState contains model errors for properties but not for the model itself the ValidationSummary renders the following HTML:
<div class="validation-summary-errors"><ul><li style="display:none"></li></ul></div>
Which is dis...
This works fine
[MetadataType(typeof(Area_Validation))]
public partial class Area
{
...
}
public class Area_Validation
{
[Required(ErrorMessage = "Please add this field.")]
public int Email { get; set; }
[Required(ErrorMessage = "Please add this field")]
public string Name { get; set; }
}
but how about if Area_Valida...