Model Validation is ASP.NET MVC validation method for your models with property attributes. Model validation works for client and server side validation.

learn more… | top users | synonyms

0
votes
0answers
10 views

Web API: QueryString model binding rules with DataAnnotations

I'm becoming quite confused about how model binding, and specifically model validation occurs in Web API. The majority of my actions receive objects through POST requests, and my models have a ...
1
vote
1answer
34 views

Model validation Symfony2

I have read how to validate forms in server side with sf2. The solution is by using the Constraints in the Entity as annotations, validation.yml or inside the EntityType (Form). Everything is fine, ...
0
votes
2answers
41 views

Exclude Fields From Model Validation

Let's say I have a following ViewModel : public class PersonViewModel { [Required] public String Email { get; set; } [Required] public String FirstName { ...
0
votes
1answer
42 views

Data Member Validation - ISO 4217 (currency) and 639-1 (language)

So, I am looking to do some custom Data Field Validation on some models in the .NET project I am currently working on. These involve a Default Language and a Default Currency. In order to meet the ...
0
votes
1answer
53 views

Html.PasswordFor() unobtrusive field validation

I've been trying to figure this out but am having no luck. I have a model with two properties: Password and ConfirmPassword. If I display these as TextBoxes (Html.TextBoxFor(...)) in the view then ...
0
votes
0answers
188 views

ASP.NET MVC Validation Messages in Popup

The below Image is the Output/PrintScreen of my WebForm. You can see in red characters, they are Validation messages - And those messages are displayed in a <div></div> tag. Validation ...
1
vote
1answer
57 views

.NET WebAPI DataModel - “one element or another” required data annotation

My web service is required to accept a model that contains a number of elements. The domain is broadcast media. One of the requirements of the model is that it contains EITHER a ...
0
votes
2answers
272 views

Custom model & client validation in MVC without data annotations

I have the below view models, which are used to represent a survey of questions, but they are structured into a more flattened grid to accommodate the default model binder. // Main ViewModel for the ...
0
votes
3answers
194 views

Backbone.js Model Validation Not Working

What's wrong with the following code? (function(){ window.App = { Models: {}, Collections: {}, Views: {} }; window.template = function(id) { return ...
0
votes
1answer
127 views

MVC3 Remote Validation with DataAnnotationsModelValidator adapter

I want to validate various telephone number properties on a DTO property of my model using a custom DataAnnotationsAttribute. I don't want to duplicate the DataAnnotations onto ViewModels, to keep ...
0
votes
1answer
237 views

ModelState.IsValid is always false for RegularExpression ValidationAttribute in MVC 4

In my class, I have a property for a file attachment like so... public class Certificate { [Required] // TODO: Wow looks like there's a problem with using regex in MVC 4, this does not work! ...
4
votes
2answers
355 views

ASP.NET MVC Model Validation Error Localization Context

First of all, I have to say that I understand how Data Annotation -based Model Validation works in ASP.NET MVC4 and I have it successfully implemented with DataAnnotationsModelValidatorProvider. So I ...
0
votes
1answer
198 views

How to validate multiple models in asp.net mvc 3?

I have a simple model like: public class AppointmentModel { private static List<SampleModel> _list; public string ClientName { get; set; } ...
1
vote
1answer
116 views

Model is Not Valid

I am creating a registration form. I had a property that is national identity number. But I want user to fill it after confirm registration. Then I dont write it in registration form. commented ...
0
votes
2answers
96 views

Throwing exceptions in getters and setters

I was wondering what the best practice is for model validation when it comes to using getters and setters. Specifically, I have nullable fields in my model that, in some use cases, should not have ...
0
votes
2answers
72 views

Model Form validation is not working…I dont get why

model.py from django.core.exceptions import ValidationError def surname_validate(value): if value == "123": raise ValidationError('is not an even number') class Member(models.Model): ...
2
votes
1answer
3k views

ASP .NET MVC 4 View containing two partial Views with a form in each

In my MVC 4 application I have an Index View. In this View I have two div tags where a Partial view is rendered. There are two buttons that when clicked toggles between these two divs using jQuery. ...
1
vote
2answers
57 views

Using DropDownLists to constrain and select Model values

I have a model for customer public class Customer { public virtual int CustomerID { get; set; } [Required] public virtual string CustomerName { get; set; } [Required] public ...
0
votes
0answers
64 views

The model of type 'MyModelType' could not be updated in Many-To-Many Relationship

I've models as follows (having many-to-many relationship) Role Model public class Role { private bool _isActive = true; [HiddenInput(DisplayValue = false)] public ...
1
vote
1answer
327 views

MVC 4 Validate a checkbox without using JQuery

I am currently trying to validate a Terms and Conditions checkbox on a payment form so that the form is not submitted until the terms and condition checkbox is checked. The particular form that I am ...
1
vote
2answers
98 views

Array must contain 1 element

I have the following class: public class CreateJob { [Required] public int JobTypeId { get; set; } public string RequestedBy { get; set; } public JobTask[] TaskDescriptions { get; ...
0
votes
1answer
101 views

MVC selective model validation

In my model I have a person with a HomeAddress and BillingAddress of type location: class Person { public Location HomeAddress { get; set; } public Location BillingAddress { get; set; } ... other ...
0
votes
1answer
51 views

Localized modelvalidation not working in ie < 9

I'm using localized modelvalidation in my mvc 3 application. I did this with the Required attribute and a errormessage resource. This works on almost all browsers, except ie 7 and 8. Below you can ...
4
votes
3answers
793 views

How to disable MVC 4 model validation?

I am working on a project written on mvc 4 that got several instances of wizard-like behaviour - chain of few views that pass the same half-filled model. Starting from the second view controls are ...
0
votes
1answer
129 views

Setting audit values on model before Model Validation kicks in

I have defined a base class with some properties like: public string CreatedByName { get; set; } public DateTime CreatedOn { get; set; } public string UpdatedByName { get; set; } public DateTime ...
4
votes
2answers
801 views

Best approach for complex model/submodel validation (MVC)

Problem I know there is a lot of ways of doing Model validation within MVC, and there is quite a lot of documentation regarding this topic. However, I'm not quite sure what's the best approach for ...
1
vote
0answers
1k views

MVC4: ModelState.IsValid always returns true

I have a PartialView that contains a form that asynchronously posts data to my controller. The controller will add the user if the ModelState is valid, if not, it will return the PartialView with the ...
0
votes
2answers
592 views

.Net Data annotation and model hierarchy

everyone! I'm confusing with implementing a piece of code to make work .net data annotation in asp.net mvc 3 with model with different required fields in several cases (6). I have a model: public ...
0
votes
0answers
30 views

how can I validate a collection asp.net?

I need to parse a list of items from a delimited file, then apply validation rules for each. the display will probably be a gridview. On a user action (say like clicking a validate button), I need to ...
1
vote
0answers
194 views

multiple partial views and one submit button in a layout view

Im not sure if this is the right approach to do this. In my searchs only found multiple partial views and one submit button but not in a layout. I have tree different views each with their own model ...
0
votes
2answers
4k views

Validation error message not displaying MVC4

I am using MVC4. Validation is failing but validation error messages are not getting displayed. This is my model. public class Configuration { public int Id { get; set; } ...
1
vote
1answer
649 views

Custom Validation for Duplicate doesn't work

I want to create custom validation for duplicate User name and E-mail. Model is so: public class RegisterModel { [Required( ErrorMessage = "Username is empty" )] [StringLength( 100, ...
2
votes
3answers
2k views

MVC DateTime validation failing

I found a lot of simulair questions but not a good clean solution that is working. I see a lot of custom code for getting this to work but why is that? Should this not working from the start? What I ...
1
vote
3answers
253 views

Default property values in MVC3

I have 2 classes containg POCO entities in MVC3 public class TeamMember { public DateTime JoinDate { get; set; } [Required] Public string Name{ get; set; } } public class Project { ...
0
votes
1answer
110 views

Required ModelValidation just for new objects ASP.NET MVC

I have this issue since yesterday. In my User model I have a [NotMapped] called "ConfirmPassword". I don“t save it on the database but I use it on my Create form as a always to validate the data input ...
0
votes
1answer
284 views

ASP.NET MVC3 Compare Validation not worked properly

Assume this model: public class ChangePasswordModel { [Required(ErrorMessage = CustomRegex.RequiredErMsg)] [DataType(DataType.Password)] [Display(Name = "Current password")] ...
0
votes
1answer
835 views

cascading dropdown loses select items after post

I have an MVC3 razor project, which I am trying to build using multiple reusable elements. I have many model classes like the following public class ProductCreateModel { [Required] ...
0
votes
1answer
88 views

MVC3: EditorForModel() for non strings

I have a model I would like to use in a form using EditorForModel(). For all non-String data types (like bool, DateTime etc), the form created makes the fields required, even though I have not set the ...
0
votes
1answer
179 views

Using RegularExpressionAttribute in a Custom ModelValidatorProvider

I've got a custom implementation of ModelValidatorProvider that I'm using in an ASP.NET MVC App. But I'm currently getting an error on any property that yields a RegularExpressionAttributeAdapter. The ...
0
votes
1answer
434 views

Validation Attribute get triggered two times

In my MVC3 application I have the model ( not important properties deleted ): public class AccountViewModel { [StringLength(65)] public string Property1 { get; set; } [StringLength(65)] ...
0
votes
2answers
825 views

ASP.NET MVC 3 and validation attribute for dropdownlist with default value of 0

What is the best way to throw a required validation error using a validation attribute with a dropdownlist that has a default value of 0? If the value is 0, or the default value, I want the attribute ...
0
votes
1answer
159 views

Conditional Model Validation

I have the following Model: public class DeliveryTracking { public string TrackingRef { get; set; } public string SalesID { get; set; } public string PackingSlipID { get; ...
3
votes
1answer
67 views

“user may do X is user owns object Y”: Implement logic in Model Validation or Controller logic?

Consider, for example's sake, the logic "A user may only edit or delete a comment that the user has authored". My Controller Actions will repeat the logic of checking whether the currently logged in ...
1
vote
2answers
802 views

Forcing Id and UserName to be unique in ASP.NET MVC 3 Model

In my ASP.NET web site users model, I want both Guid Id's and String UserNames to be unique. I am going to map my model objects to a DB using Entity Framework. Is there a build-in attribute or some ...
3
votes
1answer
681 views

How to handle ASP.NET MVC3 Request Validation exceptions as model or property validation errors

My question is hopefully pretty straight forward. Upon submitting my form, I would like to flag all properties (fields) that have invalid characters (specifically HTML) as model errors. The issue I am ...
3
votes
2answers
203 views

How to get model validation to pickup attributes set on objects in a List in MVC3?

I have a set of models that looks similar to this public class OtherModel { [Required] string name { get; set; } } public class OthersEditModel { List<OtherModel> others { get; ...
1
vote
1answer
461 views

Moving Model Validation to Service Class - ASP.NET MVC

I want to be able to perform validation from within my Service classes. I have a Controller action that looks something like this: public ActionResult Edit(Post post) { if(!ModelState.IsValid) ...
0
votes
1answer
26 views

rails 3, trying to confirm that an email address is in the dbm, but getting a wrong number of args error

My source is at: https://gist.github.com/f01685376a02a577a9cb the method in question: def is_valid_email?(address) User.find_by_email(address) end I think the solution is to change the value ...
10
votes
3answers
5k views

Model Validation / ASP.NET MVC 3 - Conditional Required Attribute

I'm having trouble with my ASP.NET MVC 3 application. I have 2 propertiesin my model whereby I only want 1 of them required in my view based on whichever one is empty. So for example, if I enter a ...
0
votes
3answers
1k views

MVC3 modifying model validation metadata and error messages

I need a solution for ASP.NET MVC3 model validation logic. I have a custom localization solution and i'm passing all strings through a method for translating, something like that: ...

1 2