Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
We are currently updating a plugin from v7 to v10 and have run into some difficulty with changing from dialogService to editorService.
We can't seem to find in the documentation a full scope of the parameters that editorService can take, just some examples of how it can be used.
Our code is thus:
editorService.open({ view: '/App_Plugins/MyPlugin/' + html + '.html', show: true, modalClass: 'umb-modal s-services', dialogData: $scope.dialogData, callback: function (dialogData) { // do stuff console.log("scope: " + $scope); }, error: function (error) { console.log(error); }, close: function () { editorService.close(); } });
We think that the modalClass option is invalid, for example but cannot find a definitive spec to tell us all the optional parameters.
Anyone got such a thing?
You need to look at some examples, here's one of them: https://github.com/leekelleher/umbraco-contentment/blob/develop/src/Umbraco.Community.Contentment/DataEditors//dev-mode.js
editorService.open({ title: "Edit raw value", value: Utilities.toJson(model.value, true), ace: { showGutter: true, useWrapMode: true, useSoftTabs: true, theme: "chrome", mode: "javascript", advanced: { fontSize: "14px", wrap: true }, onLoad: function (_editor) { $timeout(() => _editor.focus()); }, }, view: "/App_Plugins/Contentment/editors/_json-editor.html", size: "medium", submit: function (value) { model.value = Utilities.fromJson(value); if (callback) { callback(); } editorService.close(); }, close: function () { editorService.close(); }});
Hope it helps.
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Backoffice editorService options
We are currently updating a plugin from v7 to v10 and have run into some difficulty with changing from dialogService to editorService.
We can't seem to find in the documentation a full scope of the parameters that editorService can take, just some examples of how it can be used.
Our code is thus:
We think that the modalClass option is invalid, for example but cannot find a definitive spec to tell us all the optional parameters.
Anyone got such a thing?
You need to look at some examples, here's one of them: https://github.com/leekelleher/umbraco-contentment/blob/develop/src/Umbraco.Community.Contentment/DataEditors//dev-mode.js
Hope it helps.
is working on a reply...