Questions tagged [jqbootstrapvalidation]

jqBootstrapValidation is JQuery validation plugin for bootstrap forms.

jqBootstrapValidation is JQuery validation plugin for bootstrap forms.

87 questions
1
vote
2 answers

bootstrapvalidator gives "Cannot read property 'group' of undefined" on ckeditor field

I'm using ckeditor on a text area and I need to set a custom validation. Following the example, I set the textbox using the jquery adapter in this way: $('#posteditor') .bootstrapValidator() .find('[name="text"]').ckeditor({ skin:…
helloIAmPau
  • 71
  • 1
  • 2
  • 10
1
vote
1 answer

Using bootstrapValidator in Twitter Bootstrap Wizard

how can validate a Twitter Bootstrap Wizard form on onNext event with bootstrapValidator?
1
vote
0 answers

Bootstrap Validator submits form even if there is a validation error

I have the following image where you can plainly see that the field is required after I submit the form. However, after submitting the form, it continues on to the button click event in the JS instead of stopping the form submission. What am I…
sagesky36
  • 4,542
  • 19
  • 82
  • 130
1
vote
2 answers

Bootstrap Validator - Send all input field values to remote PHP file

I was wondering if there was a way to send all of my input field values to a remote PHP file using Bootstrap Validator. To explain, I have two input fields in a log in form. I use Bootstrap Validator's remote validation on both of the input fields.…
BigBerger
  • 1,765
  • 4
  • 23
  • 43
1
vote
2 answers

JavaScript Bootstrap validation

I am using JavaScript and Bootstrap for validation in my form. Everything works the way it should when I make all of these 4 fields required. However, I need an either/or situation. For example, if the first two fields, 'name' and 'SIN' are filled,…
dkeeper09
  • 537
  • 3
  • 11
  • 29
1
vote
1 answer

How to submit form with Bootstrap Validator

I am using http://bootstrapvalidator.com/ with visual studio in bootstrap asp.net project. Problem I am having that I can never get validate button to actually validate like it does in examples, it validates fine when I start typing into textbox,…
1
vote
1 answer

how to validate field to contain only specific values?

I have an input field to search for a blood type, I want to validate it so the accepted value should be only one of these strings (A+, A-, B+, B-, O+, O-, AB+, AB-), so when the user typed any other string an error message should appear, I used the…
MD.MD
  • 708
  • 4
  • 14
  • 34
1
vote
1 answer

bootstrapvalidator trigger manually with custom message

I'm using bootstrapvalidator and it works fine with the following. $('.login-form').bootstrapValidator({ message: 'This value is not valid', feedbackIcons: { valid: 'glyphicon glyphicon-ok', invalid: 'glyphicon…
1
vote
1 answer

Conditional validation with BootstrapValidation

I am using BootstrapValidation in a form and I want to have some validations only if another field is filled. For example, I have this form :
I want to check if the…
Dougui
  • 7,142
  • 7
  • 52
  • 87
1
vote
1 answer

prevent BootstrapValdiation on a specific email domain

I'm using BootstrapValidator to validate my email input box. It works perfectly, however I want to pervent a certain email domain "@test.com" from being validated, how do I do that? here is the code: email: { message: 'Your email…
1
vote
2 answers

Bootstrap Validator Form Issues

Below is my code, both modal and javascript controlling the form. The validation doesnt work. It returns whether or not the validation requirements have been met however on submitting nothing happens. I have the jquery and bootstrap links in another…
hipkiss
  • 197
  • 2
  • 19
0
votes
1 answer

$(...).jqBootstrapValidation is not a function at HTMLDocument.

i am trying to implement a contact us page using bootstrap template. I am a really beginner in asp.net and its my first time using a template. I cant really get it where is the problem that is causing the above error. I want to when the user…
0
votes
2 answers

programmatically call Bootstrap validator

I have create my own Bootstrap validator: $('.myValidatorClass').validator({ custom: { 'datainizio':function($el){ return dataInizio($el); } }, …
MDP
  • 4,177
  • 21
  • 63
  • 119
0
votes
3 answers

Bootstrap Jquery validation + PHP

I use Bootstrap validation with tooltips. I want to validate form (username, password) but the button (btn-login) isn't isset (returns NULL). It never goes to loop in PHP code (above). This is my code - HTML and JS
0
votes
1 answer

Have to click twice to fill the timepicker field

I have a form that is validated by bootstrap form validation. Inside it, I have a timepicker text field:

Meeting time:

ivanacorovic
  • 2,669
  • 4
  • 30
  • 46