bootstrap-validator icon indicating copy to clipboard operation
bootstrap-validator copied to clipboard

Validator to compare two daterange fields issues in comarision

Open rehan4uusmalik opened this issue 6 years ago • 0 comments

  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.

rehan4uusmalik avatar Dec 15 '18 13:12 rehan4uusmalik