Hallo,
i have an problem with check the color of „border-color“ on Webaplication.
For the check is used fort he check: qfs.web.checks.style.checkStyleAttribute. The checkt faild.
I looked in the CSS-File and found the borderstyle. In the next step was the check with the developer of the browser and look in witch paar it used.
In the class „has-error“ stand the „border-color“
This ist the HTML code with i wount to check:
<div ng-class="{'form-group': true, 'has-error': showValidation && registrationForm.mailCountryField.$invalid}" class="form-group has-error">
<label for="" class="col-sm-2 control-label ng-binding">Land <span class="text-danger">*</span></label>
<div class="col-sm-10">
<input type="text" class="form-control ng-pristine ng-invalid ng-invalid-required" id="mailCountryField" name="mailCountryField" placeholder="Land" ng-model="registration.mailAddress.country" required="">
<span class="text-danger ng-binding" ng-show="showValidation && registrationForm.mailCountryField.$invalid">Bitte geben Sie ein Land ein.</span>
</div>
</div>
I check check the input field and around code, but I became be all “undefined”.
What my mistake?
Thanks for help.
Best regards
Alexander Straub