Data Annotations are used by frameworks such as ASP.NET MVC to enable a model-based validation approach and enforce consistent validation throughout the application, both on client and server side. They were first introduced in ASP.NET MVC 2. In addition to ASP.NET MVC, they can also be used with ...

learn more… | top users | synonyms

0
votes
1answer
24 views

MVC DisplayFormat doesn't apply for TextBoxFor

I have a currency Model decorated with [DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:c}")], it does work (The $ sign is displayed) for DisplayFor, but not for TextBoxFor in the ...
1
vote
0answers
39 views

MVC3 Localized display name attribute by property name

I have recently learned how to create a localized display names for my model's properties using the following article: Simplified localization for DataAnnotations And I am now trying to push it a ...
0
votes
1answer
22 views

DataAnnotation for Required property - Why is it required for asp.net webapi?

I read through these posts DataAnnotation for Required property http://forums.asp.net/t/1835627.aspx/1 and I understand it has something to do with xml and not supporting required but I don't get ...
0
votes
0answers
15 views

Unobtrusive credit card validation not working once deployed

I'm running MVC4 and .NET 4.5. I applied the data annotations credit card validator to my model. I'm having issues with the client side validation. It works fine on my development box, but once ...
0
votes
1answer
40 views

Why is DisplayFormat DataFormatString not working?

I have a property in my view model as follows: [Editable(false)] [Display(Name = "Date")] [DisplayFormat(DataFormatString = "{0:yyyy/MM/dd}", ApplyFormatInEditMode = true)] public DateTime ...
0
votes
1answer
37 views

Using data annotations for optional fields

I have a field that's optional, but if it's there it must be exactly six characters long. The StringLength Dataannotation doesn't seem to allow for this. Is there some way of combining things to get ...
1
vote
1answer
34 views

Data annotations extensions validators: Is .c0m a valid TLD

I downloaded Data Annotations Extensions for .NET from Data annotations extensions for use to validate user input in an C#/ASP.NET MVC application. The library came with high commendations from the ...
0
votes
1answer
18 views

How can use DataAnnotaions in webforms?

I'm trying to use data annotation in my class to show in the grid-view. But it isn't working for me. class Customer{ [DataType(DataType.Date)] [DisplayFormat(ApplyFormatInEditMode= ...
1
vote
1answer
17 views

DataAnnotation TextArea Multiple Emails

I am using MVC 3. I have a text area in which user can enter multiple emails addresses. Emails can be separated by a comma and a space. User may hit enter in the box as well. Is there an attribute ...
1
vote
1answer
19 views

Data Annotations Extensions EqualTo and Compare not working

I am using MVC3 and razaor view engine I am trying to make sure that password and confirm password should match but this is not working for me. It just keeps on telling me "password" and "confirm ...
0
votes
1answer
21 views

Rendering a <textarea /> using data annotations

I'd like to render a text area for one of the fields in my model. I've tried applying [DataType(DataType.MultilineText)] to my field, but this doesn't do the trick. At the moment, I am rendering ...
0
votes
2answers
45 views

MVC set Data annotations attributes in code

Is it possible to set range (or any other model DataAnnotations attributes) in code and keep all the DataAnnotations behaviour? i.e. I have a decimal model that I want to set its minimum value in ...
2
votes
1answer
53 views

Get [Display] attribute value from resource in MVC

I have used the [Display] attribute for one of my enums: public enum eCommentType { [Display(ResourceType = typeof(FaultManagementStrings), Name = "NormalComment")] ...
0
votes
3answers
49 views

Designing classes in code first Entity Framework

I am building a online shopping web application. I have four entities : Customers CusomerId Name Address Phone Category CategoryId Category Product ProductId Name Price Category Order ...
0
votes
1answer
27 views

Validating inherited attribute using DataAnnotations

I have MVC project that relies on webservices to provide data and those webservices are based on CMIS specification with custom functionality. I have several classes used as DataContracts, which were ...
0
votes
0answers
28 views

Jquery to Check Data Annotations

I added custom jquery validation to MVC Data Annotations validations. But i am not sure, how to make the validation fails on clicking submit? On using this code if other validation fails along with ...
1
vote
2answers
47 views

Multiple Regex Data Annotation Validation [SOLVED]

I have a string field in my Code First which can contain one of the two regular expressions: "([0-5]\d):([0-5]\d)\,(\d{2})" or"(\d{3}),(\d{2})" how can I combine them in one field? I tried using a ...
0
votes
0answers
21 views

Using duplicate entry exception with data annotations in mvc3?

i have a MVC3 project and a WebService project that uses Entity Framework 4 (the webservice use this) and my MVC3 project uses this webservice to CRUD on a mysql database. The question that i have is ...
1
vote
1answer
111 views

input type = email jquery validate overriding mvc data annotation

I have the following property on my viewmodel: [Required(ErrorMessage = "Email is required")] [RegularExpression(RegularExpressions.Email, ErrorMessage = "Email is not valid")] ...
1
vote
1answer
49 views

DataAnnotation DisplayFormat for decimal numbers

I've got his code. PartialView. <div class="input width110"> @Html.EditorFor(x => x.Price, @Html.Attributes(@class: "right_text_align", @disabled: "true", @id: "Price")) </div> ...
0
votes
1answer
32 views

Data Annotation not working with IE8 and telerik grid

The problem Using Telerik Grid and only with IE8, When I'm Editing a field of a grid that's customized with Data Annotations with wrong values I'm getting an error 500 because it's going to the ...
0
votes
0answers
25 views

Invoke ValidateModel and validate children objects

While building an interface to have a user manually fix incoming data, I'd like to be able to validate the Model before I send it to the view. This would allow the error messages to be displayed the ...
1
vote
1answer
29 views

Orchard Module - How to return strongly typed Model rathen than dynamic from Driver

I created a ContactUs module that sends email when user click on Submit button. Everything works perfectly. However, I am curious if it is possible to return a strongly typed Model rather than ...
1
vote
1answer
32 views

Is it possible to override a validation ErrorMessage when you have a collection of the same model?

For example, if I have a 2 person objects as part of a View... One is the parent and the other is the child, I don't want the error message to say "Gender is a required field" twice, rather have it ...
2
votes
1answer
42 views

Mark a field “Read Only” with Data Annotations

I am trying to make the ID field read only. It is an Identity field in the DB so the user will not be setting it. However they would like to see it. What am I missing as the below, when assigned to ...
1
vote
1answer
63 views

C# MVC Standard Form-Post Validation

I am curious as to what other methods there are for form validation. Currently the solution is .NET 4, MVC 3, and the form post is a traditional non-Ajax post. Obviously there are many ways to go ...
0
votes
1answer
83 views

Data validation not working in view (DataAnnotations)

I'm having trouble getting data validation working in my view. I believe 'AssetName' should show an error message if a user tabs into the textbox and doesn't put any data in but no message is shown ...
0
votes
1answer
55 views

ASP.NET MVC Required DataAnnotation

I am building my first app with ASP.NET, and I am using Entity Framework. I have two classes: public class Owner { public int ID { get; set; } [Required(ErrorMessage="Empty Owner name")] ...
0
votes
1answer
80 views

Is there a way through data annotations to verify that one date property is greater than or equal to another date property?

I have a StartDate and EndDate on my SchoolEvents Model and I was wondering if there are any data annotations I could use to verify that the StartDate is less than or equal to the EndDate and that the ...
0
votes
1answer
23 views

Weird behavior with Range DataAnnotation

I have a Password field with [Range(5, 10)]. If I input a correct value between 5 and 10, it displays a message error anyway. What might be that?
0
votes
0answers
33 views

how to use System.ComponentModel.DataAnnotations in Xamarin Studio

I have core model classes that use System.ComponentModel.DataAnnotations to do data validation: required fields, email validation, etc... How can I use that namespace in Xamarin Studio for my Mono ...
1
vote
1answer
66 views

Dapper.NET mapping with Data Annotations

So I have a class with a property like this: public class Foo { [Column("GBBRSH") public static string Gibberish { get; set;} .... } For saving data, I have it configured so that the ...
1
vote
0answers
38 views

Validation with DataAnnotations in Azure shows wrong Text

We creating a windows azure website in MVC4 and we are using dataannotation to set the display-name and also to validate the input fields. It is a multilanguage page and thus we are unsing ...
0
votes
1answer
52 views

MVC model is not posting the complete list to controller if i delete some random rows from the list

I have generated textboxes from a list in my model like below:- @using (Ajax.BeginForm("Create", "Invoice", new AjaxOptions { OnBegin = "OnBegin", OnComplete = "OnCreateComplete" })) { ...
0
votes
0answers
89 views

ASP.Net MVC 4 - Fields with IClientValidatable not rendering properly

I have a hybridized project (originally WebForms) with ASP.Net MVC 4. In this project, the MVC portion, I am wanting to use unobtrusive client validation. I have a number of validation attributes ...
1
vote
1answer
23 views

Clear Data Annotations

Is it possible to clear DataAnnotations in derived classes ? public class User { [Required(ErrorMessageResourceType = typeof (UserMessages), ErrorMessageResourceName = "BIRTHDATE_REQUIRED")] ...
2
votes
1answer
78 views

How to use data annotations to do units conversion in WPF

I have for example a view model class Measurements : ViewModelBase { [Units(Meters)] double Length { ... } [Units(Degrees)] double Angle{ ... } } then in my XAML I would like ...
1
vote
1answer
95 views

JMSSerializer and FOSRestBundle - Annotations not working. “Does not exist”

I am trying to use ExclusionPolicy however I keep getting an "Annotation does not exist, or could not be auto-loaded" error. Here is the exact error being thrown out: [Semantical Error] The ...
0
votes
1answer
52 views

DataAnnotations vs .Map Functions Database Model Mapping?

Wich one is better and why? [Table("Bar")] public class Bar { [Key] public Int32 BarId { get; set; } public String BarName { get; set; } public IEnumerable<Foo> Foos { get; ...
0
votes
1answer
58 views

Prevent MVC4 SelectList from being 'required'

I have a SelectList in a Razor page where the user should be able to select an item or not as they see appropriate. The selected item value is an integer that is a property in an Entity Framework ...
0
votes
0answers
17 views

MVC 3 validation of Date using DataAnnotations

I have this problem, [question]: MVC validation of Date using DataAnnotations, how validate the datetime field and show custom error message for invalid dates? Thanks.
0
votes
1answer
31 views

StringLength not working as expected in MVC4.0

I have a @Html.EditorFor controle in MVC4.0, for stringlength validation I have used [StringLength(10)] attribute on the top of the model property initializing, the above controle.What it does ...
0
votes
1answer
33 views

How do I specifiy maximum field length using .net framework 4.0 and EF Code First?

I am writting a winforms application. I had the domain classes nicely working with Code First and .Net Framework 4.5 however I need to switch to .Net Framework 4.0 so that the application will run on ...
0
votes
4answers
116 views

mvc model with foreign key relationship

I am having data annotation validation issue with model containing model of foreign object. Lets say Class Foo { public virtual Int Id {get; set;} [Required] public virtual ...
0
votes
0answers
49 views

Data annotation is not working with checkbox

Custom Attribute public class BooleanMustBeTrueAttribute : ValidationAttribute { public override bool IsValid(object propertyValue) { return propertyValue != null ...
0
votes
0answers
92 views

Entity Framework Database First with proper use of Data Anotations

I have one project with EF and Code First approach and there using of Data Annotations was straight forward. Now I'm working with Database First and I see that using Data Annotations is more specific ...
0
votes
0answers
22 views

EmailAddressAttribute without being required

I have a [EmailAddress] DataAnnotation from .net 4.5 on a model property, which returns a 'The Email field is not a valid e-mail address.' error during validation, when the Email property is empty. ...
0
votes
0answers
43 views

How do I prevent the WinForms ErrorProvider from displaying errors until after user input?

I'm currently troubleshooting a WinForms problem that I just can't seem to resolve. Hopefully someone can point me in the right direction. I have a form making use of two-way data binding on it's ...
0
votes
2answers
112 views

using HtmlHelper in javascript with MVC and DataAnnotations jqGrid

I created an extension method that works when it is not included in a java script tag. public static class ExtensionMethods { public static string TickWrap(this HtmlHelper source, MvcHtmlString ...
0
votes
1answer
47 views

ModelMetadata TemplateHint always null

I am trying to create a custom ModelMetadataProvider to provide unobtrusive attributes for the JQuery UI Autocomplete widget. I have a custom attribute that looks like this: ...

1 2 3 4 5 25