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
Asked
Active
Viewed 763 times
1
-
1In the public part of the website or in the backoffice? – Eyescream Mar 24 '16 at 13:20
-
It would be helpful if you added an example of what you have tried so far – elolos Mar 25 '16 at 22:17
-
in the back-end of the website. – J Mos Mar 27 '16 at 06:23
1 Answers
0
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
}];

Alan Tsai
- 2,465
- 1
- 13
- 16