angularjs - Disable tooltip "Please fill out this field" when not using <form> tag (DNN) -
setting 'novalidate' or 'formnovalidate' not fix issue
i'm using framework dnn. framework wraps each page in form tag breaks custom forms. passed i'm using ng-form on tag. because of fix see default tooltip though i'm using bootstraps uib-tooltip. i'm willing go far jquery fix issue read post apparently chrome , firefox have both disabled ability select , edit default tooltips. example:
<div role="form" ng-form="myform" novalidate> <div class="form-group"> <label> <input type="text" id="identifier" name="identifier" ng-minlength="3" ng-maxlength="14" class="form-control" ng-model="$ctrl.identifier" ng-required="true" uib-tooltip="{{ $ctrl.tooltips.identifier }}" tooltip-enable="myform.identifier.$invalid && myform.identifier.$touched"> </label> </div> </div>
displays "please fill out field". how can remove default tooltip?
thanks this post jscher2000 able find work around. add 'title' tag , set it's contents empty space. passing in empty quotes doesn't work there must @ least 1 space between quotes that's empty. example:
<input type="text" name="name" title=" ">
thanks.
Comments
Post a Comment