Questions tagged [jqbootstrapvalidation]

jqBootstrapValidation is JQuery validation plugin for bootstrap forms.

jqBootstrapValidation is JQuery validation plugin for bootstrap forms.

87 questions
0
votes
2 answers

Restrict special charater in Textbox by bootstrap validator

$('#ad_pd_form').bootstrapValidator({ fields: { ad_pd_url: { validators: { notEmpty: { message: 'Please enter a Valid URL' } } } } …
0
votes
1 answer

"required" attribute does not work properly in SAFARI browser

I have used bootstrap form validation but it doesn't work in safari browser. When I select first option and submit but it remain disabled, but when select the second option then it work well and removed the disabled. Please help me....My code is…
0
votes
0 answers

Dynamic Fields and BootstrapValidator

I'm workin' on my wedding-website. Since I have added a dynamic field to add more names the jqBootstrapValidator gives an error: Uncaught TypeError: Cannot read property 'length' of undefined I have tried everything but it does not work =( Here's…
0
votes
1 answer

Bootstrap validation symbol(correct and wrong symbol) font is missing

I am doing bootstrap validation using bootstrap.min.css for my website.I have done the validation,but font missing creates hurdle for me.I have added a screenshorts .Please suggest me why font is missing? code in…
sradha
  • 2,216
  • 1
  • 28
  • 48
0
votes
2 answers

How do I display an alert after an event has happened in Bootstrap?

I want to display an alert after the submit button has been pressed and everything was done successfully. I am using the jqBootstrapValidation.js library to validate that the form is not being sent without values. This is the code that I have…
0
votes
1 answer

How to validate dynamic row + chosen select with javascript?

I have the code below http://jsfiddle.net/manojgolty/65xcgaq0/1/ // Chosenify every multiple select DOM elements with class 'chosen' $('.chosen-selects').chosen({ width: '100%', allow_single_deselect : true, …
0
votes
0 answers

Date validation using bootstrap validator using datePicker

I am trying to validate the date but the problem which I am facing is that when I am selecting the date first time it validates easily. But when I am trying to select the date once again from datepicker, it does not validates again. I tried…
0
votes
1 answer

bootstrap validation regular expression to validate a custom location

I have a form where user select the location (Ajax auto suggestion based). the auto populated location format is like.. New Albany, IN, United States i.e City-name comma country-code comma country-name. I want to avoid user entering his own format…
user1493834
  • 756
  • 4
  • 11
  • 25
0
votes
1 answer

code in each file is working but records entry repeats for two times in each table

Validation process is correct and data entries are also happening but records are inserted two times in each table at an instant of form submission. **library.php HTML CODE**
0
votes
1 answer

How to create Ajax request in Bootstrap validator using Laravel validation?

I am creating a form with bootstrap validator. And I am performing a validation using bootstrap validator(client) and laravel validation(server). My problem is I want to perform an ajax request to the laravel to check the username's availability.…
Jerielle
  • 7,144
  • 29
  • 98
  • 164
0
votes
0 answers

boostrap validator and mvc element names

I'm using bootstrap 3.2.0, bootstrapvalidator 0.5.2, and mvc 5.1. I'm no expert in MVC, so the solution may be obvious to a more experienced user. The problem I'm having is the model emits input element names in the format "modelname.fieldname", so,…
0
votes
1 answer

Conditional statements after remote validation

Using the Bootstrap validator remote, fields are validated successfully. How can you then have a conditional statement if valid is true to perform a certain action and if false then do something else. This is my validator: agentPwd:{ …
user94628
  • 3,641
  • 17
  • 51
  • 88
0
votes
3 answers

twitter bootstrap validation with bootstrap-wizard onNext

I have a form loaded in multiple twitter-wizard tabs whic i need to validate the current tab before moving to the next with BootstrapValidator 'onNext': function(tab, nav, index) { var…
0
votes
1 answer

how to force the ajax function to go inside success function?

I am using bootstrap register form to take information of users and store them in my database I use ajax request to submit the form information and store it after validation . The information is validated correctly and then stored correctly in my…
0
votes
0 answers

How to redirect my users to the same page after submitting their information?

I had a registration form on my website and after my users register and create a new account the form does not go inside the success function but the information is saved correctly in the database. The ajax function is…