1

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

Djensen
  • 1,337
  • 1
  • 22
  • 32
J Mos
  • 11
  • 1

1 Answers1

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