ckeditor可以使用ng-repeat进行排序

时间:2016-12-25 19:59:27

标签: angularjs ckeditor angular-ui

我正在使用CKEditor为用户提供在我的网站上写的内容。 我使用ng-repeat并插入一个按钮来添加新的CKEditor。 我需要提供它们来对所有CKEditor进行排序,并且我尝试使用角度UI进行排序。

问题是当用户尝试对每个CK编辑器进行排序时,所有文本都消失并锁定到编辑区域。

an example on plunker

<body ng-app="myapp" ng-controller="mainCtlr">
{{editorList |json}}
    <h1>Hello Plunker!</h1>
<div ui-sortable ng-model="editorList">
  <div ng-repeat="item in editorList" style="border: 1px solid red; margin: 10px;">
    <textarea class="ckeditor" ng-model="item.text" mh-ck></textarea>
  </div>
</div>
<ul ui-sortable ng-model="editorList">
  <li ng-repeat="item in editorList">{{ item.id }}</li>
</ul>

0 个答案:

没有答案