Tagged Questions
0
votes
1answer
30 views
Javascript not being used and object reference error on submit of form with attached model
I am working on a password reset functionality for a website that updates a users password in a backend database. I am successfully able to change a users password by entering a strong password i.e. ...
0
votes
1answer
47 views
Validate elements outside a form
I have some elements (input, textarea, controlgroup) and a submit button outside of a form element...
Can I validate those elements (client-side)? For instance, check if they are required and show a ...
0
votes
0answers
29 views
On editing form shows error but on submit it validates, with error
I'm creating a webapp so a user can add a schedule for a employee for example. This project is made in MVC 4 but for this particular part I need jquery and jquery validation.
When entering data into ...
0
votes
2answers
166 views
jQuery validation - Textbox requires data if checkbox is checked
I have a checkbox - HasRaffle that will require a textbox - RaffleItem to contain data if HasRaffle is checked. How would I do this? I've never done my own jQuery validations before. This is what I ...
-1
votes
0answers
64 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 ...
1
vote
1answer
461 views
MVC 4 unobtrusive Jquery Validation beforeSubmit
I would like to wire up ALL forms so that a loader is shown after Jquery Validation has found no errors and before the form is submitted or on submit.
How can this be accomplished using MVC 4 ...
-1
votes
2answers
408 views
Javascript validation error for hidden field using MVC4 Razor site with unobtrusive validation
While using ASP.NET MVC with unobtrusive validation enabled I have, on a number of occasions, had a need to embed an ID into a Razor form as a hidden field. I've learned to always include a validation ...
-2
votes
1answer
128 views
MVC 4 Validation firing, but the form is still submitting?
My MVC 4 validation is working as it seems, the error messages pop up, but it still submits the form. Any idea what I am missing? Thank you.
public class StatusRequestModel
{
[Required]
...
2
votes
0answers
187 views
The field 'Date' must be a date MVC 4
Im facing this error when im using my jQuery datepicker.
jQuery:
$( ".datepicker" ).datepicker({
defaultDate: +7,
autoSize: true,
dateFormat: 'dd.mm.yy',
});
Model:
...
-1
votes
1answer
53 views
Htm.DropdownFor validation issue
I'm working on a MVC4 project and I'm having some strange behavior the jQuery validation is checking the text in the dropdown instead of the value:
// field in model
[Required]
...
1
vote
1answer
140 views
change default behavior of unobtrusive jquery validation to validate on onkeyup?
I'm using micrososofts unobtrusive jquery validation with MVC4 / razor and the default behavior appears to be to first validate on click of submit, and then after that validate onkeyup.
I'd like to ...
0
votes
1answer
58 views
Prevent unobtrusive validation on specific form
I have a form which I want to use with jQuery unobtrusive validation. Everything works fine.
But I also have other forms on that view, like a search form, login form, etc., and the plugin attaches to ...
-1
votes
2answers
173 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 ...
-1
votes
1answer
201 views
Error message displaying every time. Using Jquery validator in MVC Project
My Html Code as well as Javascript code is follows.
<h2>Register</h2>
@using (Html.BeginForm())
{
@Html.ValidationSummary(true)
<fieldset class="acloginform">
...
0
votes
0answers
182 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 ...
-2
votes
1answer
218 views
Show MVC validation in popup
I have a MVC form that uses build in client side validation, by putting the annotations on the model class and adding the unobtrusive validate Javascripts as per default MVC standards. However my ...
0
votes
1answer
64 views
Razor generates different HTML after published to a shared host
Model class:
public class MyClass
{
......
[MaxLength(9), Required, DisplayName("Social security number")]
[RegularExpression(@"\d{3}-\d\d-\d{4}", ErrorMessage = "Invalid social ...
0
votes
1answer
69 views
Allow user enter $ sign in front of number?
I had the following model property
[DisplayName("Salary per year")]
public decimal Salary { get; set; }
And the rasor markup is
@Html.EditorFor(model => model.Salary)
...
1
vote
0answers
84 views
Client validation not working on the shared host but works when debugging
I had the following property in model class:
[MaxLength(9), Required, DisplayName("Social security number")]
[RegularExpression(@"\d{3}-\d\d-\d{4}", ErrorMessage = "Invalid social security number")]
...
1
vote
1answer
99 views
Range for int treated as string
I have a project made in C#, MVC4 EF (data first).
In my Create view I have a number of numeric fields, for which I want to specify the allowed values, using Range. For some strange reason my numbers ...
0
votes
1answer
85 views
How to query the validation of a specific field in javascript/jquery
With a simple MVC4 application I have a simple view with a simple form with some fields that have some simple validations (required, max/min, length, etc.). I have both ClientValidationEnabled and ...
2
votes
2answers
119 views
Is there a good way to deal with unobtrusive validation's seemingly asynchronous behavior?
I have the below abbreviated validation code running on the submit of a form. Unobtrusive validation is set up for my form.
(function () {
"use strict";
$("#feedbackForm").submit(function () ...
2
votes
1answer
1k views
ASP.NET MVC 4 - Clientside Validation Not Working
I am using Visual Studio 2012 and I cannot get a custom attribute client side logic to work
to reproduce at a smaller scale, I created a new MVC 4 project I created the following model and Attribute ...
0
votes
1answer
214 views
asp.net unobtrusive validation remove on value change
I have custom validator, everything works except error msg is not removed when value is changed.
(function ($) {
$.validator.addMethod('lastcategory', function (value, element) {
alert(value);
...
0
votes
1answer
445 views
jQuery validate() MVC 4 Uncaught Type Error Object [object Object] has no method 'validate'
I'm making a a MVC 4 application. I'm trying to apply some client side validation using jQuery validate. I keep receiving "Uncaught Type Error: Object [Object object] has no method 'validate'". I've ...
1
vote
1answer
297 views
How to perform a Html.ValidationSummary in an ajax submit?
I do not know why is not working the ValidationSummary when I perform a Html.BeginForm using AJAX.submit.
@model Contoso.MvcApplication.Models.Questions.MultipleChoiceQuestionTemplate
@using ...
0
votes
1answer
425 views
Bootstrap Radiobutton int jquery validation
I've tried a couple different options while trying to avoid setting a default selected value.
Option 1
<div class="control-group">
<h4>Text</h4>
<div ...
1
vote
3answers
812 views
How to manually enable jQuery validation with ASP.NET MVC
I'm struggling to understand some of the basics of jQuery validation as wired up with ASP.NET MVC. I'm an experienced .NET programmer, but this is my first attempt at writing JavaScript. I've gone ...
0
votes
1answer
267 views
DateTime format according to the culture in MVC
I have an MVC view where I list a dateTime type column named "CreatedOn", the values are formatted like this: 'DD/MM/YYYY HH:MM:SS',
When I click on edit link to modify a value I obtain the same ...
0
votes
1answer
327 views
Client side validation not working
I implemented client side validation i.e, Required attributes specified in Model and HTML.ValidationMesssage For in .cshtml and referenced the JQuery validator and was working fine when I click on ...
2
votes
3answers
2k views
client-side validation trips on DataAnnotation Range attribute
I have the following code in my Model class:
[Range(1, 100)]
public decimal Price { get; set; }
After recent upgrade (I assume) of jquery.validate to 1.11.0, I am getting an error even if I ...
1
vote
0answers
204 views
ValidationMessageFor not rendering error message
I have a Partial View:
@Html.EditorFor(model => model.BM)
@Html.ValidationMessageFor(model => model.BM)
In the main View, if I do:
@using (Html.BeginForm())
{
...
1
vote
0answers
168 views
why I see validation messages before form submiting
I've created a form and when I load the page with it I see validation messages before I submit the form. Why? You can download my code from github
The similar question. It's because of mvc4
@model ...
1
vote
1answer
816 views
Client side validation not working with ASP.Net MVC Razor and Ajax form
I am displaying a partial view inside a JQuery UI dialog. The partial view contains fields that include Html.ValidationMessageFor entries and the form itself has a Html.ValidationSummary. I can't ...
0
votes
0answers
553 views
asp.net mvc4 clientside validation doesn't work
I have clientside validation enabled in my config and I'm also including the appropriate jquery files for validation, but every time I submit, the page posts to server without first doing clientside ...
2
votes
0answers
439 views
jquery.validate.unobtrusive.js is killing my selectList()
Or maybe its the other way around?
I am new MVC so be gentle. I can select a value from a Html.DropDownList and it populates to the model when saved. However if I click out of the box jQuery.Validate ...
1
vote
2answers
428 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 ...
0
votes
2answers
526 views
Override jQuery validate default settings in MVC4
To override the Query validate plugin, in the plaugsin document, the recommend way is:
$(".selector").validate({
invalidHandler: function(form, validator) {
var errors = ...
3
votes
3answers
3k views
MVC 4 client side validation not working
Can anyone tell me why client side validation is not working in my MVC 4 application.
_layout.schtml
@Scripts.Render("~/bundles/jquery")
@RenderSection("scripts", required: false)
In my web.config ...
0
votes
1answer
284 views
How do I apply the jQuery unobtrusive validation to a DropDownList editor template?
Too many people have told me to apply the required class to make the field required. I don't want the good ol' required attribute; I want the new attribute sets for validation. This is what I've tried ...
3
votes
1answer
484 views
JQuery Validation Not working after page refresh (Jquery Mobile)
I have a Jquery Mobile/ asp.net mvc4 application. After the first page, subsequent pages are called by Jquery mobile using Ajax requests. Now, I used JQuery validator plugin to perform validation on ...
5
votes
4answers
390 views
jQuery validation of a form inserted into DOM
I have this markup on the page:
<div data-bind="visible: found">
<div data-bind="with: eventDetails">
<!-- Some stuff -->
</div>
<div ...
4
votes
3answers
1k views
ASP.NET MVC RemoteAttribute validation not working - Action not being executed
I've been pulling my hair out trying to figure out why ValidationController actions are not being triggered.
I have settings enabled in project-wide web.config:
<add key="ClientValidationEnabled" ...
1
vote
1answer
530 views
dd-mm-yyyy Date Validation Error with Google Chrome
I am developing an ASP.NET MVC4 application.
My View Model Class Property
[DisplayName("Birth Date")]
[Required(ErrorMessage = "You must indicate your full birthday")]
...
0
votes
2answers
436 views
Disable Required Validation Specific Field in the View ASP.NET MVC 4
if someone could give me some hint I would appreciate.
I'm searching for a while, and I even found a post I thought it would solve my problem, but it didn't.
Disable Required validation attribute ...
0
votes
0answers
405 views
MVC 4 no client validation
Fiddling long time now, (MVC 4 empty project template) in my view form attribute is added by default novalidate="novalidate", don't know why. submit just post back of-course.
I have added all ...
0
votes
1answer
422 views
jquery.validate.unobtrusive: Is it possible to have a validation summary list with unique errors?
I have a table with different input elements that are required.
When I now don't choose an item of the 3 select lists, I got the same error message 3 times.
JavaScript:
...
0
votes
1answer
86 views
Jquery Validation and calling Remote functions Asp.net Razor View Engine
I am trying to translate a semi-old MVC2 site into a new and snazzy MVC4 site. So far so good, and I am really only stuck on the validation part of the site. I have a jquery function that is ...
0
votes
1answer
206 views
Jquery Form Validation NOT USING model Annotations
I have tried asking this question in a number of ways, and I still can't get an answer. In Asp.net MVC4, is there a way I can just add jquery code to my views and not have to add any kind of ...
0
votes
1answer
517 views
jQuery.Validate in MVC4
I want to use jQUery.validate in a MVC4 project. I have a wizard setup (from stepy) where I have 6 steps to go through. On each step I want to add validation. Now the validation works until ...





