Questions tagged [jqbootstrapvalidation]

jqBootstrapValidation is JQuery validation plugin for bootstrap forms.

jqBootstrapValidation is JQuery validation plugin for bootstrap forms.

87 questions
3
votes
1 answer

Javascript form validation taking a long time to run

The question: How do I go about speeding up the validation, while continuing to use jqBootstrapValidation as my validator? The problem: I have a small contact form setup really nicely using jqBootstrapValidation as a validator, but when I start…
sorifiend
  • 5,927
  • 1
  • 28
  • 45
3
votes
3 answers

Bootstrap text-danger with form-inline not aligned

I have a simple form with error handling through jqBootstrapValidation. I set it up so that it is horizontal when the browser is wide enough. Here is how it looks: https://i.stack.imgur.com/GCK3r.png However, when I enter a bad email, the form is…
CharleyB0y
  • 109
  • 2
  • 14
3
votes
1 answer

Multi tab forms and bootstrapValidator

I have a form that its fields expand in different tabs. I am using bootsrap framework and bootstrapValidator to validate forms. But the problem is that when I am processing fields in first tab form fields at this tab validate normally. If all fields…
Apostolos
  • 7,763
  • 17
  • 80
  • 150
2
votes
0 answers

Data path "" should NOT have additional properties(scripts) when adding external js to a non-application project

Already updated my node and angular. When doing ng build I get error: Schema validation failed with the following errors: Data path "" should NOT have additional properties(scripts). generated project via: ng n my-proj…
acsib
  • 21
  • 1
2
votes
0 answers

jquery Bootstrap form Validation is not working

i am unable to use jqBootstrapValidation for my form validation. my code snippet is as follows. i have added form-group and controls class to my each field but it still not working
2
votes
1 answer

Using Jquery bootstrap validation to validate individual field in an array of fields along with sibling field

I have a form with form-groups each containing similar text fields and checkboxes which are sent as arrays when submitting the form as below:
2
votes
1 answer

Bootstrap Validator still shows error message after setting value through jquery

I'm changing a value of a drop-down 01 based on another drop-down 02 via jquery change(). And i have implemented BootsrapValidation() to the form. My issue is if required field error message is displayed for the dropdown 01 and then i set dropdown…
2
votes
1 answer

Validate height width with bootstrap validator

$('#ad_pd_form').bootstrapValidator({ fields: { ad_pd_image: { validators: { file: { extension: 'jpg,png', type: 'image/jpg,image/png', …
2
votes
1 answer

Dynamic List population by Ajax to Chosen jQuery and validating it with Bootstrap Validator

Am using a form where I use the Chosen jQuery for a select tag with 'multiselect' enabled, The options for this select tag are generated from the response of an Ajax call. Along with this select tag there is one textarea field and another select tag…
2
votes
1 answer

Fire Bootstrap Validation with onClick and Onchange

I am facing a problom while using Bootstrap Validation in laravel. I have a input field that should be a number and must be grater than some value, Second thing is my input field can also be change with dropdown change option. It works fine after…
nitin7805
  • 203
  • 2
  • 13
2
votes
2 answers

Bootstrap Validator - Alert on success validation

I'm using Bootstrap Validator plugin to validate my form and I'm trying to do an alert when the form is successfully validated. HTML
Body
  • 3,608
  • 8
  • 42
  • 50
2
votes
2 answers

validating fields in a same row separately using bootstrap validator

I thought to use bootstrap validator for my project and I just tried it with a dummy html page. In my page, I have a div which contains two input fields in it in a same row. This is my form
vigamage
  • 1,975
  • 7
  • 48
  • 74
2
votes
2 answers

Enable submit button in Bootstrap validator

I am using Bootstrap validator and the problem I am having is that I want to enable to submit button after all values are valid but unable to do so. $(document).ready(function() { $('#ans_frm').bootstrapValidator({ feedbackIcons: { …
Umerm
  • 145
  • 1
  • 2
  • 9
2
votes
2 answers

How to pass options into Javascript from PHP?

I use BootstrapValidator as my validation component. I need to give options which are gathered from PHP into its constructor like this: PHP Code to generate fields: $fields = ""; foreach ($form["questions"] as $key => $value) { if…
fth
  • 2,478
  • 2
  • 30
  • 44
2
votes
0 answers

BootstrapValidator: How to use use two submit buttons and validate different fields on same form?

So i have a form that has two submit buttons, but for each i want to validate different fields, in this case when i click on the preview submit button i want to ignore 3 fields, while in the 'normal' submit button i want to validate all. Is this…
Maxrunner
  • 1,955
  • 4
  • 24
  • 41