xeditable e-formclass不适用于textarea

时间:2017-09-12 13:16:33

标签: javascript angularjs angular-xeditable

我在角度js中使用xeditable插件。它具有e-formclass属性,该属性可以将类提供到表单中,并且与textbox一起正常工作但是当我使用{{1}时它不起作用。

textarea的

textarea
var app = angular.module("app", ["xeditable"]);

app.run(function(editableOptions) {
  editableOptions.theme = 'bs3';
});

app.controller('Ctrl', function($scope, $filter) {
  $scope.user = {
    desc: 'Awesome user \ndescription!'
  };
});
div[ng-app] { margin: 50px; }

以下是文本框的摘录

<link href="https://vitalets.github.io/angular-xeditable/dist/css/xeditable.css" rel="stylesheet"/>
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular-sanitize.min.js"></script>
<script src="https://vitalets.github.io/angular-xeditable/dist/js/xeditable.js"></script>



<h4>Angular-xeditable Textarea (Bootstrap 3)</h4>
<div ng-app="app" ng-controller="Ctrl">
  <a href="#" editable-textarea="user.desc" e-formclass="clss1" e-rows="7" e-cols="40">
    <pre>{{ user.desc || 'no description' }}</pre>
  </a>
</div>
var app = angular.module("app", ["xeditable"]);

app.run(function(editableOptions) {
  editableOptions.theme = 'bs3';
});

app.controller('Ctrl', function($scope) {
  $scope.user = {
    name: 'awesome user'
  };
});
div[ng-app] { margin: 50px; }

Textbox Textarea

0 个答案:

没有答案