我有网站,使用Umbraco CMS,SQL服务器和asp.net C#开发,我使用asp.net为网站创建了自定义模块,我想在自定义页面中使用Umbraco TinyMCE编辑器,而不是.Net文本框,如果有任何人知道发送给我或告诉我一些URL帮助我这样做
答案 0 :(得分:0)
查看此博文Umbraco 7: Use the rich text editor (TinyMCE) in a custom section
它告诉您如何在自定义页面中重用富文本编辑器(TinyMCE)
以下是博客文章选项3的摘录:
在您的视图中
<umb-property
property="property"
ng-repeat="property in properties">
<umb-editor model="property"></umb-editor>
</umb-property>
在角度控制器中
$scope.properties = [{
label: 'bodyText',
description: '',
view: 'rte',
config: {
editor: {}, // empty for now
hideLabel: true
}, hideLabel: true
}];