You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With bootstrap4 when client validation fails the <div class="invalid-feedback">error msg contens</div> is still hidden. The problem is that input element is wrapped in <div class="iti iti--allow-dropdown"> parent. When moving the error msg div into the same common parent, it shows up. Then you only have to reposition <div class="iti__flag-container"> so that it stays intact when error shows up. That's how I temporarily solved it. Just to let others know in case they run into the same issue.
The text was updated successfully, but these errors were encountered:
With bootstrap4 when client validation fails the <div class="invalid-feedback">error msg contens</div> is still hidden. The problem is that input element is wrapped in <div class="iti iti--allow-dropdown"> parent. When moving the error msg div into the same common parent, it shows up. Then you only have to reposition <div class="iti__flag-container"> so that it stays intact when error shows up. That's how I temporarily solved it. Just to let others know in case they run into the same issue.
Can you provide usage code for this scenario? How to move error div inside plugin?
With bootstrap4 when client validation fails the
<div class="invalid-feedback">error msg contens</div>
is still hidden. The problem is that input element is wrapped in<div class="iti iti--allow-dropdown">
parent. When moving the error msg div into the same common parent, it shows up. Then you only have to reposition<div class="iti__flag-container">
so that it stays intact when error shows up. That's how I temporarily solved it. Just to let others know in case they run into the same issue.The text was updated successfully, but these errors were encountered: