I'm creating a module for Episerver, and would like to reuse some of the Episerver compoinents.
I can load the ContenSelector-dialog that lets the user select a page from the pagetree like this:
I can load the datetime-pickerlike this:
require(["epi/shell/widget/DateTimeSelectorDropDown","dojo/dom"
], function (
DateTimeSelectorDropDown,
dom
) {
datetimepicker = new DateTimeSelectorDropDown(dojoConfig, dom.byId("datetimePicker"));
}
);Is it possible to load a TinyMCE-editor with the epi-link plugin? I would like to let the editor select from the pagree, when creating links.