Tagged Questions
-1
votes
0answers
51 views
Client side validation does not work without ValidationMessageFor()
I'm having a hard time finding anything about this specific topic because all that comes up in search is why does not work ect. My issue is that I wouldn't like a validation message on error, just for ...
0
votes
2answers
94 views
.NET MVC unobtrusive validation / checkbox captcha
I'm trying to implement a checkbox captcha I read about here:
http://uxmovement.com/forms/captchas-vs-spambots-why-the-checkbox-captcha-wins/
However I'm having issues adding the checkbox with client ...
2
votes
1answer
96 views
Making a field as required in Razor view
I want to make a text box field as required in the razor view. I can't use validation attribute [Required] because the field names are generated dynamically. I checked this answer which sets the ...
1
vote
1answer
136 views
jQuery Unobtrusive Validation - remote validation gives false positives and settings being ignored?
I thought I had a pretty bullet-proof set up for using jQuery Unobtrusive Validation for MVC web apps but a recent bug has me very puzzled.
I want all the validation to be consistent so use remote ...
0
votes
1answer
282 views
using asp.net mvc3 with jquery.validate.unobtrusive.js to validate form and changebutton
I am working with mvc3 and use model validation like this:
public class ColumnVM {
[Required(ErrorMessage = "Required")]
public string Name { get; set; }}
I want to do clientside ...
0
votes
1answer
33 views
modifying ModelState on the client
So here's the problem: I have a form and a property adorned with [RequiredAttribute] altough initialy it's hidden on the form. There's a checkbox.
When it's clicked it shows the element. So I wanted ...
0
votes
3answers
57 views
Why HtmlHelper would skip validation attributes
Why @Html.TextBoxFor and other helpers would skip jquery.validation attributes and create elements without those? Am I missing some references or something? It's MVC 3.0 project.
If I add them ...
-1
votes
2answers
164 views
Remote action method not being hit using jQuery Validate
I am using ASP.NET MVC4 and jQuery Validate and jQuery Validate unobtrusive.
I have various elements on my form, but I only need to have one element validated. The other elements DO NOT need to be ...
0
votes
0answers
305 views
How to use JQuery Custom Validators and onChange Event in <input type='file' /> using ASP.NET MVC 3
Invoking custom jquery validator within another javascript function
How to invoke jQuery Custom Validator for a <input type='file' /> on onChange Event within normal javascript function. I ...
0
votes
1answer
393 views
jQuery multiple tabs + validation select does not fire (MVC3/Razor/VB)
I've used a solution here (which I've fiddled here) for restricting submission of a form until all required fields are filled.
The problem is when I run on my MVC3 project, as I've observed on ...
1
vote
1answer
138 views
How to re-fire jquery functions after failed validation
I am building a form using asp MVC3 and MVC Unobtrusive validation. I noticed some of my jquery functions do not run again after the failed validation. For example, I have a datepicker on a textbox ...
1
vote
2answers
418 views
How DateTime is validated in MVC Unobtrusive Validation?
Using MVC4 with client-side & unobtrusive validation enabled, I'm trying to understand how the validation determine if an entered DateTime value is valid or not.
In my application this formatted ...
1
vote
1answer
224 views
How do I get unobtrusive validate to clear required validation on an email input?
I have a mobile application I'm writing in ASP.Net MVC3 (using JQuery unobtrusive validate). As part of it, I am collecting name and email information from the users. My model includes fields like:
...
0
votes
1answer
218 views
MVC3/4 Validating Hidden Fields
I have set up model validation for my form but validation doesn't seem to work at all. I don't suppose anybody can help. I've tried using the below work-around but that keeps pulling up an 'undefined' ...
0
votes
0answers
95 views
MVC3 Remote validation of multiple fields that are updated via javascript
I have a inputtextand inputhidden controls that are updated by a custom autocomplete javascript control.
This is my Model:
public class MyModel{
[Remote("ValidateAction", ...
0
votes
1answer
1k views
jquery client side validation not working in MVC3 partial view
I could not seem get client side validation work with the following partial view. This view is inside divTSettings div in the parent view. Tried lots of things from stackoverflow and other sites, ...
1
vote
1answer
183 views
ASP.NET MVC3 EditorTemplates and Name Attributes
I am using editor templates in my code and what I noticed is that lot of the controls get the name property set based on index.
@Html.EditorFor(x => x.Emails)
Where Answers is collection of ...
0
votes
2answers
48 views
Validating other fields depending on select
I have this in my view:
@using(Html.BeginForm())
{
<label> Condition Target </label>
<input type="text" name="ConditionTarget1" id="ConditionTarget1"/>
<input ...
0
votes
1answer
242 views
MVC3 ModelClientValidationRule compare 2 different fields. Adding a required flag to either
I am trying to create a custom validation using IClientValidatable
I have 2 fields PhoneNumber and Mobile. I want the user to either or both. Only 1 is required but at least one must be provided.
I ...
0
votes
1answer
138 views
Valid values for ModelClientValidationRule ValidationType string?
Is there a lsit of what validation rule types are directly available, without having to code a new one?
e.g.
JQuery.validation has "min(value)"
But I have tried
var rule = new ...
2
votes
2answers
201 views
How do I prevent MVC unobtrusive validation for required field from also activating email validation?
I have an ASP.NET MVC login form, that uses client-side unobtrusive validation.
My login model has a UserName with a [Required] attribute.
Most of the usernames entered will be email-addresses, so on ...
0
votes
0answers
284 views
Validating MVC 4 form without Unobtrusive ajax
I am trying to validate my form without using Unobtrusive Validation becauase my validation is a little more complicated than average. What is needed to accomplish this? Just include the ...
2
votes
1answer
221 views
ASP.NET MVC3 Client side validation without form tag
I have a view which contains some input fields. They are bound to a viewmodel. They also have validation messages. But the view doesn't have a form tag (neither Ajax.BeginForm nor Html.BeginForm).
...
1
vote
1answer
217 views
Custom ValidationSummary template (that doesn't break client-side validation)
A similar question has been asked before (Custom ValidationSummary template Asp.net MVC 3) but neither of the answers satisfy the extra requirement I have, which is that the solution doesn't break ...
2
votes
1answer
262 views
Handling line breaks in textarea elements with ASP MVC and jquery unobtrusive validation
Viewmodel:
public class ViewModel
{
[Display(Name = "Message")]
[StringLength(500, ErrorMessage = "Your message must be {1} characters or fewer.")]
public string Message { get; set; }
}
...
0
votes
1answer
702 views
Client validation in partial view that is rendered in jquery dialog, without Unobtrusive
I have login partial view in jquery dialog box.when I click on "Login" button with empty textboxes, error should be shown, but it goes with null value to server and get this error.
I want to use ...
1
vote
1answer
142 views
Adding validation property attributes in views with Html.EditorFor() methods not inside a Html.BegingForm() method
I have noticed that validation attributes are only added to the elements that were created via Html.EditorFor() helper method and which are inside a Html.BegingForm() method, that respectively creates ...
0
votes
2answers
165 views
dropdownlistfor + jquery validation
I am creating an application in asp .net mvc3 c#. I create a dropdown list but I am unable to do a client side validation using Jquery.
I have looked at numerous articles related to it and know that ...
0
votes
0answers
140 views
Validation multiple text fields MVC 3
I want to do the validation of multiple text fields
Values ​​must be between 0 and @ViewBag.MaxNote
In the view I have the following:
@model IList<RolesMVC3.Models.STUDENTS>
<P>Please ...
0
votes
2answers
77 views
Unobtrusive validation - how to find a dependent property for comparison
working on an MVC 3 app. I have finished my custom server side code, now working on the client side. I want to tie it in to the existing unobtrusive, so I am using the addMethod. The pseudo goes ...
2
votes
3answers
140 views
Validation of child object
I have an object that contains a child object. eg.
public class Person
{
public string Name { get; set; }
public Car Car { get; set; }
}
public class Car
{
public int CarId{get;set;
...
1
vote
1answer
117 views
Display:none fields not being posted to controller
I have a lightbox that contains a bunch of input elements that I have set up using HTML helpers for a create action. They are optional fields, but I do apply the digit rule to them in jquery ...
3
votes
2answers
2k views
Fire jquery unobtrusive validation with bootstrap , Asp.net Mvc 3 and backbone
I tried to find the bits of information available on the net, But couldn't hook it up together. I have an application which makes use of a login page. Now I'm not binding the view to any model. ...
0
votes
2answers
489 views
jQuery validate greater than & less than
How do I ensure that a user cannot enter a value smaller or bigger than a certain value ?
The problem lies in making a validation of a field having a value smaller or bigger than another field.
0
votes
1answer
237 views
jquery custom validation (addMethod) returning false regardless
I'm beating my head against the wall on this one, so I appreciate any help on this. I have some a validation method I created to point to a javascript function that return true/false if the email ...
1
vote
2answers
1k views
MVC3 client validation in partial view
I have a view Index and a Partial View SCItems. I use data annotations for validation. It works in Index, but not in my partial SCItem. I should use jquery validation? Thanks.
SCModel code:
using ...
0
votes
1answer
2k views
ASP.NET MVC 3 - Custom client side validation not working
I'm trying to implement a custom client side validation, but it is not working. I'm basing myself on the article on Codeproject ...
0
votes
1answer
208 views
Custom range attribute for model validation doesn't produce jQuery validation attribute
In my project I have a few instances where the user needs to supply an amount (in pounds and pence) as a decimal and it has to be within the Int32 range so it can be converted for the database. I ...
0
votes
1answer
97 views
jquery validation for enumdropdownlistfor
I have this code
Razor page:
<div class="editor-label">
@Html.LabelFor(model => model.Citizenship)
</div>
<div ...
0
votes
1answer
283 views
custom validation attribute for checkbox list in asp.net mvc3
I have a requirement where an aribitrary list of checkboxes are dispalyed in a form and I have to make sure atleast 1 checkbox is checked while submitting the form. I have no idea how this to be done. ...
0
votes
1answer
696 views
Jquery validator reset $.validator.setDefaults({ onfocusout: false, onkeyup: false }); in MVC3
are there any way to reset $.validator.setDefaults({ onfocusout: false, onkeyup: false }); in MVC3. I want to change the value in to some thing like
$.validator.setDefaults({ onfocusout: true, ...
0
votes
1answer
263 views
IE 8 jquery form submit event not firing - MVC3
Got my self into a problem in IE 8 only. When i reference the following 2 together then the form submit event doesn't fire. When i remove either one then the event fires ok.
<script ...
0
votes
1answer
499 views
How to display validation messages with javascript alert window?
I use LogOn partial view on Index view and use default LogOnModel of MVC3. But, there is not enough place to display validation messages in view. How can I display validation messages with javascript ...
0
votes
1answer
229 views
MVC3 unobtrusive validation - how can I see validation failed if the inputs are off the screen?
I have a wizard in MVC3 that scrolls through multiple pages before reaching a confirmation page with a submit button.
My problem is, when there is a validation failure in one of the previous pages of ...
0
votes
0answers
192 views
jquery validate isn't firing on one of my screens
I've been using jquery.validate.js for client-side validation on all my pages and it's just this one where it refuses to work. I thought it might just be a problem with the submitHandler not firing, ...
3
votes
1answer
292 views
Custom Validation for Jquery UI Selectable
I have the following code that makes the
for(somecollection){
<ol id="someId@(index)" class="selectableList">
<li value="1">1</li>
<li ...
1
vote
1answer
317 views
How to see jQuery validation list of elements with errors
Sometimes, the form won't submit because jQuery has some invalid elements that will not show up in an error message.
How can we see these errors in order to debug more easily ?
0
votes
1answer
609 views
Regex for number range not working in jquery validation
In an asp.net mvc3 view, I have a form with an input. The input has regex for a number range. The regex is correct, but the validation always comes back as invalid. I am not sure what I am missing ...
0
votes
1answer
282 views
Javascript Validation in asp.net MVC3
My problem is when page is loaded first time,alert(1) and alert(2) pops up, but when I click on my save button alert(3) don't pops up but validation message is shown(doesn't meter if I fill correct or ...
0
votes
0answers
207 views
jQuery validation plugin and page level validation issues
I am fairly new to doing web development so am having trouble trying to figure out the best way to perform validation. I have an MVC 3 project and for the page I'm working on at the moment it is not ...




