I have a custom property editor in Umbraco 10 which renders a lovely RTE:
html
<div ng-controller="HotspotEditor.HotspotRTE.Controller" class="">
<form>
<umb-property-editor class="umb-property-editor umb-rte" model="RichtTextEditor" />
</form>
</div>
js
$scope.RichtTextEditor = {
label: 'bodyText',
description: '',
view: '/umbraco/views/propertyeditors/rte/rte.html',
config: {
editor: {
toolbar: ["ace", "undo", "redo", "cut", "styleselect", "bold", "italic", "alignleft", "aligncenter", "alignright", "bullist", "numlist", "link", "unlink"],
stylesheets: ["rte"],
dimensions: {},
mode: "classic"
}
},
value: $scope.model.value.hiddenContent
};
I have migrated the application to Umbraco 13 and the RTE no longer renders. The rest of my custom property editor is fine.
Does anybody know if something would have changed between 10 -> 13?
I can't find any documentation or examples anywhere of how to use backoffice UI elements for v13.
Should I be looking in the Umbraco src code or existing packages for this?
Any help of where to start looking would be really appreciated!