TextArea in Angular JS does not work in Internet Explorer 11

0

I have the following problem in my angular code js, where the texarea has a required attribute and no matter what you enter, the validation will never happen. It is important to mention that this only happens with Internet Explorer 11

    <div class="row mt50 ">
    <p>{{'PMO_RESUMEACSO_HEADER' | translate}}</p>
      <div ng-class="{'pmo-error': showError('resumeACSO')}">
      <textarea ng-model="currentModel().ResumeACSO" required name="resumeACSO" class="form-control textarea" placeholder="{{'PMO_RESUMEACSO_PLACEHOLDER' | translate}}">{{currentModel().ResumeACSO}}</textarea>           
       <span ng-show="showError('resumeACSO')">
            {{'ERROR_MSG_REQUIRED' | translate}}
        </span>
    </div>
    </br>
    <p>{{'PMO_RESUMEACSO_FOOTER' | translate}}</p>
</div>

    
asked by Miguel Benedit 27.09.2018 в 22:16
source

0 answers