我在angularjs中使用xeditable grid writtin。 当我点击文本进行编辑时,它会调整我的div的大小,看起来像是跳转到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; }
section {
width:350px;
float:left;
padding:10px;
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<link href="http://vitalets.github.io/angular-xeditable/dist/css/xeditable.css" rel="stylesheet"/>
<script src="http://vitalets.github.io/angular-xeditable/dist/js/xeditable.js"></script>
<h4>Angular-xeditable Textarea (Bootstrap 3)</h4>
<div ng-app="app" ng-controller="Ctrl">
<div class="section">
<div class="panel panel-default">
<div class="panel-body"> <a href="#" editable-textarea="user.desc" e-rows="7" e-cols="40">
{{ user.desc || 'no description' }}
</a></div>
</div>
</div>
</div>
&#13;
我想要的是停止跳跃,它应该显得平滑。
附上小提琴。
帮助表示赞赏。