Tagged Questions
4
votes
2answers
599 views
xVal in MVC.NET with nHibernate.validator does not fire client validation
I have an ASP.NET MVC Project working with NHibernate and NHibernate.Validator and i'd like to use xVal 1.0 (most recent release).
I Added the requested scripts to the project and referenced it in ...
2
votes
1answer
312 views
Add html text in error message using client side validation in mvc3
I have an MVC appilcation with a model which uses the [Required] attibute for a field. When the validation for this attribute fails, I would like to show a hyperlink in the error message.
When I add ...
2
votes
2answers
448 views
Prevent jQuery server-side call when client side validation fails in ASP.NET MVC
I have a view page with model validations and client side validation enabled. I have a submit button which on click I have called a javascript function which uses jQuery for an AJAX call to the ...
1
vote
2answers
98 views
Data type client side validation not working in MVC 2
We have an attribute called DateReleased for which the following Data Annotation attributes are added
[Required]
[DataType(DataType.Date, ErrorMessage = "Please enter date")]
[DisplayName("Date ...
1
vote
1answer
164 views
Clientside validation attributes on hidden,radio, dropdown elements by default in asp.net mvc 3
I'm using ASP.NET MVC 3 + FLUENT VALIDATION + NINJECT
I have model X and rules for that model are something like this:
RuleFor(c => c.FirstName).NotEmpty();
RuleFor(c => ...
1
vote
2answers
213 views
ASP.NET MVC ValidationAttribute Get Other Property Display Name
I have created a custom CompareLessThan validation attribute by copying the ASP.NET MVC 3 CompareAttribute and instead of checking for equality, I check to see that one property is less than another. ...
1
vote
2answers
363 views
Enable/Disable Validation of certain hidden textboxes in mvc 2
I have got [hide] and [unhide] input buttons , the hide button shows some text boxes while the hidden button hide some text boxes, What I want to do is to enable validation only for those boxes which ...
1
vote
1answer
115 views
Client-Side Validation and Collections or Dynamic Forms
I'm using ASP.NET MVC 2.0.
I need to implement a dynamic form in order to add "on the fly" new form table row.
My ViewModel contains an ICollection according to each rows which will be added to the ...
0
votes
2answers
137 views
asp.net mvc client side validation status: need to attach/detach overlay
I am in process of creating ASP.NET MVC 2 application which uses Data Annotations for Client Side validation data generation
I have the following JQuery to to add overlay anytime a button is ...
0
votes
1answer
58 views
Html.ClientValidation doesnt works on mvc
I am trying to work out client side validation and have followed a couple of tutorials , it looks quite simple but i have no idea why its not working on my project, below is the code:
<script ...
0
votes
4answers
291 views
ASP.NET MVC and partial client side validation
I have huge form that I'd like to split in different steps, but I need to validate the fields in the current step before go to the next step.
E.g.: My form has 40 fields, and they are divided in 4 ...
0
votes
4answers
1k views
Disable client side validation for some fields in ASP.NET MVC
How can I conditionally disable client-side validation of some fields ?
Here is the example of what I need to do:
user writes name and address and submits.
Both are validated both server and ...
0
votes
0answers
363 views
how to Disable permanently mvc client validation for specific fields?
in my MVC3 application, I've a form with 2 dropdownlists that aren't required. So, I haven't added any annotation to the related attributes on the partial class. Viewing the html code generated when I ...
0
votes
2answers
179 views
Upgrade MVC1/xVal project to MVC2 and compatibilities with client side validation
I am currently looking here to migrate a project from MVC1 to MVC2. We are using xVal for client side validation.
From what I understand, I only have to remove references to xVal and replace by MVC2 ...
0
votes
1answer
705 views
How to reset ASP.NET MVC client validation mode?
I'm having a bit of trouble with the client-side validation in the ASP.NET MVC 2 framework and hope someone can help me out.
In several situations I find it useful to be able to reset the contents of ...