我用textarea和按钮显示输入表格。 我想在textarea数据无效时显示工具提示。
当我使用then方法$ setValidity启用工具提示时。它显示得很好,但其风格和位置不正确。
$scope.importedTemplate_Form.imported_html.$setValidity('validHtml', false);
HTML:
%form#form{'name' => 'importedTemplate_Form', 'novalidate' => 'true', 'ng-submit' => 'saveImportedHTML()'}
.fieldwrap
%textarea.form-control{'field-error-tooltip' => 'true', 'name' => 'imported_html', 'error-name' => 'validHtml', type: :text, 'ng-required' => 'true' ,'placeholder' => 'Type or copy your code here', 'ng-model' => 'import', 'ng-change' => 'validateHtml(true)'}
.pull-right
%button.btn.btn-arrow.continue{ 'ng-disabled' => 'importedTemplate_Form.$invalid', 'style' => 'margin-left:10px;'}=t 'application.import'