Tagged Questions
0
votes
1answer
59 views
jquery validation plugin doesn't work consistently
I'm using Twitter Bootstrap for creating a HTML form, and JQuery validation plugin for validate it. My code is as below :
HTML Part
<form id="profile_form">
<div ...
-5
votes
0answers
92 views
bootstrap validation in internet explorer [closed]
I am developing a site using bootstrap. It goes all good in firefox, internet explorer and chrome but in internet explorer bootstrap jquery validation isn't working. Anybody has any idea Why?
2
votes
2answers
99 views
JQuery validation not working on webmatrix when locally hosting?
Ok so I know it validates correctly as it works in JSfiddle, but when I try to run it locally for some reason it is not validating. I have nothing happening with the POST of the form yet. Also, I am ...
0
votes
1answer
71 views
bootbox and jquery validation
i am using bootbox dialog with a form (has only one textbox and one textarea) and i am trying to validate it with jquery validation plugin.
Here is my code
var templateDialog="<form action=\"#\" ...
0
votes
0answers
159 views
No messages on Jquery validation with Bootstrap
I am using Dan Cochran's bootstrap jQuery validator, http://alittlecode.com/jquery-form-validation-with-styles-from-twitter-bootstrap/ and I want to remove the messaging aspect but keep css classes ...
-1
votes
2answers
168 views
Fix regex in jquery validation plugin with twitter bootstrap popover
I have this code which shows a popover when there is a white space.
$.validator.addMethod(
"regex",
function(value, element, regexp) {
var re = new RegExp(regexp);
...
-1
votes
2answers
148 views
jQuery validation regex for white space getting a “Uncaught TypeError: Cannot call method 'call' of undefined error”
Here is my jquery code as per a previous stackoverflow question
$('#productId').validate({
rules: {
product: {
required: true,
term: {regex: /^$|\s/}
...
0
votes
1answer
104 views
JQuery validation plugin error placement does not work
I validate a form with the JQuery validator plugin. However, I want to place the error output at a specific place. I tried the Error Placement from the Validator documentation
<div ...
0
votes
1answer
441 views
JQuery - validator plugin
I want to use the validator plugin together with Twitter Bootstrap. However, it does not really work at the moment and I do not now why.
My form:
<div class="form_errors"></div>
<div ...
1
vote
3answers
1k views
Twitter Bootstrap Form Wizard/Jquery.validate - prevent user from moving to next tab if form is not valid
So far, i tried following:
In onNext - first thing if (!form.valid()) { return false; } this still moved the user to following tab.
In onNext - first thing:
if (!form.valid()) {
...
0
votes
1answer
972 views
how to highlight invalid section — twitter bootstrap/jquery/validate plugin
I have a form in twitter bootstrap:
<div class="form-div">
<form id="fvujq-form1" method="post" action="">
<div class="control-group name">
...
0
votes
1answer
707 views
JQuery validate within a Twitter Bootstrap modal with PHP
I'm working on a transport planner and in my tasks table I have a button to sign a routenumber to a task. When a task haven't got a routenumber at all, the button will call a bootstrap modal to assign ...
0
votes
1answer
464 views
migrating to latest jquery validate plugin
I'm currently using the jquery validate plugin version 1.9.0 the latest is version 1.11.0. When i migrated to the latest version, the error checking on forms don't work. After reading the ...
0
votes
1answer
1k views
Bootstrap JQuery Validate: error message between input and <span class=“add-on”>
When using Twitter Bootstrap and Jquery Validate in a combination everything goes right except when using a field with an (icon) add-on like:
<label>Datum:</label>
<div id="datum" ...
0
votes
1answer
423 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
2answers
138 views
how to validate a field with the style =display:none? [duplicate]
i have a field with display:none property.Its like,when the user clicks on "yes" radio button then the file upload field will appear and validation takes place for file upload also.In this case,I used ...
0
votes
1answer
442 views
File upload validation(jquery)
I have a weird problem.I have a form with a file upload and few other textarea .each and every field is required.so basically when few fields are left blank,the validation works fine but if and only ...
0
votes
0answers
64 views
smartwizard step validation using validate.js [duplicate]
I am using the smart-wizard in my site which I am doing it with Boostrapt and I want to validate each step with validate.js http://docs.jquery.com/Plugins/Validation
but i really dont know how
this is ...
0
votes
2answers
817 views
form validation inside a bootstrap wizard
I was watching a lot of example but none of them worked at all for me.
I have a form inside a wizard and I am using Bootstrap for my whole site, I saw and tried several examples but I had no luck.
I ...
1
vote
1answer
251 views
jQuery validate on radio button click
I have a contact form which asks whether one would like to be contacted via email or telephone. When you click on the email radio button, an email text-field appears. Same for clicking the telephone ...
0
votes
2answers
125 views
Remove validation from element in Jquery
I have jquery validation(With twitter bootstrap) on my page and I use the following ASP.NET MVC annotation.
[DisplayName("Text)"),Range(100,35000)]
public decimal Field { get; set; }
The ...
1
vote
2answers
579 views
Jquery Validation plugin with Asp.net masterpage not working
hello i'm using jquery validation plug-in, its not showing any message
my javascript is
<script type="text/javascript">
$(document).ready(function () {
...
1
vote
1answer
468 views
jquery validate don't work
My problem is that when I click the submit button the form is submitted but is not validated before.
usually when you click the submit button and the form is validated and sent only if everything is ...
-1
votes
1answer
630 views
jquery.validate.js corrupting twitter bootstrap modal
When using jquery.validate (For email purposes.) in conjunction with twitter bootstrap, modal windows aren't able to close unless you click outside of box (It renders buttons useless.). There is a ...
1
vote
1answer
545 views
Twitter bootstrap model and MVC/jquery client side validation
I am using twitter bootstrap modal with a remoteurl to load in a partial view; in this case for a reset password form.
I am using the MVC model binding and have set the data annotations on the model ...
0
votes
2answers
762 views
bootstrap css error class is not displaying when a jquery validation error occurs
I am using jquery validation plugin to validate my form that uses bootstrap 2, but when a rule is violated the error class is added but on the screen the input box doesn't look any different. How can ...
1
vote
2answers
383 views
Combining Bootstrap and Validator
So I'm rebuilding my registration page with bootstrap. And I am trying to incorporate jquery's validator plugin to validate the form. The first thing I did is I split the form up into three parts, ...
4
votes
1answer
1k views
Twitter Bootstrap typeahead and jQuery Validate
I would like to have validation on a text input field with Twitter Bootstrap typeahead. So I tried implementing it as follows. The validation on the name field works correctly. If you start typing in ...
0
votes
1answer
260 views
JQuery form validation is painfully slow on firefox
I'm using jquery-validate to do some simple form validation on a page in conjunction with twitter bootstrap.
On Chrome it works perfectly with no lag, but on FireFox there is terrible lag with the ...
0
votes
1answer
459 views
customise validate jquery plugin
I have a form that is validated by the validate jquery plugin.
<form action="" id="contact-form" class="form-horizontal">
<fieldset>
<div class="control-group">
...
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. ...
2
votes
1answer
676 views
Using bootstrap popover with jquery validation and knockout
I am working on using the Twitter Bootstrap popover to show validation errors from jQuery on a Knockout driven form. I've got it showing the popover fine, but if I have to reload the data (such as on ...
0
votes
0answers
178 views
trying to use if and find in jquery to generate a boolean expression
I am working with twitter bootstrap and the jquery validate plugin
I have a several form rows that look like:
<div class="form_row" >
<div class="control-group">
<label ...
0
votes
1answer
273 views
Select class control-group where none of its children are span.error
I am working with twitter bootstrap and the jquery validate plugin
I have a form row that looks like:
<div class="form_row" >
<div class="control-group">
<label class="control-label" ...
0
votes
1answer
28 views
how to select class where a child has a specific class, in jquery
I am working with twitter bootstrap and the jquery validate plugin
I have a form row that looks like:
<div class="form_row" >
<div class="control-group">
<label class="control-label" ...
1
vote
3answers
181 views
how can I find jquery elements that are immediately followed by a error span
I am working with twitter bootstrap and the jquery validate plugin
I have a form row that looks like:
<div class="form_row" >
<div class="control-group">
<label ...
1
vote
0answers
1k views
how can I add error classes to twitter bootstrap control group with multiple inputs ( not just 1 )
I have a form which i am trying to validate using the plugin validate at jquery.validate.js.
you can see it at you can see the live page at:
http://optionhomes.net/index.php/test1/index
The form ...
0
votes
0answers
411 views
jQuery Validation fails with KnockoutJS and Twitter Boostrap Modals
I've got a project set up where I'm using KnockoutJS along with the Twitter Bootstrap framework. I have a screen with a list of data. Clicking on one of the rows allows the user to edit the row's ...
7
votes
4answers
4k views
Twitter Bootstrap integration to ASP.NET MVC validation
How can I integrate ASP.NET MVC unobtrusive validation and Twitter Bootstrap? I want to have all those validation messages styles appropriately.
4
votes
3answers
1k views
jQuery Validation on input-append ( Twitter Bootstrap )
I am using twitter bootstrap for a site, and we use jquery.validate.
I have a input element with button appended to input element. This is a required field within our js validation.
The code is:
...
2
votes
0answers
729 views
Custom MVC validation attribute and bootstrap format issue
I am using ASP.net MVC with twitter bootstrap.
I have added the following to get the fields with errors to style properly in bootstrap
$.validator.setDefaults({
highlight: function (element) {
...
-3
votes
2answers
2k views
Validate Bootstrap form w/ jQuery Validate BEFORE displaying modal w/button? [closed]
I have two buttons at the top of a jQuery validated form: one saves changes (the form's submit button), the other displays a TermsOfService dialog which when agreed will run some other code.
...
2
votes
1answer
562 views
Twitter's bootstrap typeahead - how to allow values from the list only?
Is there any way to allow user to choose values from predefined list only with Twitter's bootstrap typeahead? Ideally, each text value should be replaced with some numeric value (how it is possible ...
1
vote
1answer
673 views
jQuery.validate error message not formatting in Twitter Bootstrap
I have a registration form that is validated via jQuery Validate and while the form catches errors properly and displays the validation error message, it doesn't use my "label label-important" class ...
0
votes
3answers
2k views
jQuery Validate: add error or validate class to parent div
I am using Twitter's Bootstrap as my framework for a project I am working on. I am attempting to validate a simple contact form using the jQuery Validate plugin but it's causing some headaches.
I'm ...
2
votes
3answers
1k views
How to properly validate Twitter's Bootstrap form placed on several tabs with jQuery Validate?
I have one form located on several Twitter's Bootstrap tabs:
<form id="personal-data" class="form-horizontal">
<div class="tabbable">
<ul id="tab" class="nav nav-tabs">
...
1
vote
2answers
716 views
How to display jQuery Validate error message after Bootstrap's add-on?
Currently it is display right after the input field, so it is between input field and before .add-on, which is incorrect - see the demo.
How can it be corrected? (please also note that I use ...
1
vote
1answer
694 views
Bootstrap.css and jquery validation plugin for forms
I'm trying to use bootstrap with the jquery validation plugin but when I try to use bootstrap the error labels get put in front of the entries in my forms (pushing the entry to the right). Secondly ...
0
votes
1answer
2k views
Twitter bootstrap + jquery really simple validation issue in IE 9
I am using twitter bootstrap css framework on a page which uses modal to show a login box(bootstrap-modal.js). In the login box i am using jquery really simple validation (jquery.rsv.js) for ...


