I have website , developed using Umbraco CMS, SQL server and asp.net C#, and I have created custom modules to the website using asp.net,and I want to use Umbraco TinyMCE Editor in Custom Page, instead the .Net textbox , please if any body know send me or tell me about some URL help me to do that
1
votes
1 Answers
0
votes
Have a look at this blog post Umbraco 7: Use the rich text editor (TinyMCE) in a custom section
It tells you exactly how to reuse rich text editor (TinyMCE) in your custom page
Below are snippet from the blog post option 3:
In your View
<umb-property
property="property"
ng-repeat="property in properties">
<umb-editor model="property"></umb-editor>
</umb-property>
In your angular Controller
$scope.properties = [{
label: 'bodyText',
description: '',
view: 'rte',
config: {
editor: {}, // empty for now
hideLabel: true
}, hideLabel: true
}];