It's totally possible, your approach would be a little different depending on your exact needs.
One can render any property editor in a custom view using the "umb-property-editor"-directive but in your case if sounds more like you need the "editor view" that shows to the right and not the whole property editor with support for picking multiple nodes etc.
Implement ContentPicker in backend?
I am working on extending Umbraco for a customer with his own section and I want to use the buildin Umbraco.ContentPicker in Angular
How is this possible? Are there a tutorial on how to add more modules to the backend?
Hi!
It's totally possible, your approach would be a little different depending on your exact needs.
One can render any property editor in a custom view using the "umb-property-editor"-directive but in your case if sounds more like you need the "editor view" that shows to the right and not the whole property editor with support for picking multiple nodes etc.
Have a look at the "editorService" in Umbraco https://our.umbraco.com/apidocs/v8/ui/#/api/umbraco.services.editorService this provides some common types of "editors" for picking content, media, members and more.
A example of usage can be find in the nice Redirect-package by Skybrud:
https://github.com/skybrud/Skybrud.Umbraco.Redirects/blob/v2/latest/src/Skybrud.Umbraco.Redirects/App_Plugins/Skybrud.Umbraco.Redirects/Scripts/Controllers/Editors/Destination.js
Thank you very much.
is working on a reply...