1000hz / bootstrap-validator

A user-friendly HTML5 form validation jQuery plugin for Bootstrap 3
http://1000hz.github.io/bootstrap-validator
MIT License
2.38k stars 1.07k forks source link

Validator to compare two daterange fields issues in comarision #645

Open rehan4uusmalik opened 5 years ago

rehan4uusmalik commented 5 years ago
  dateRangeStart: function($el) {  // starts date input 

    if(checkDateRangeValue())
        return true;
  },
  dateRangeEnd: function($el) { // end date input 
    if(checkDateRangeValue())
        return true;  

  }

In my case, if I set the start date with the error then on set the end date with correct it is still showing the submit button disabled. Could I can set the start or end date input as valid.