jquery - Create plugin for Umbraco -
i new umbraco , cannot find links on creating plugin umbraco.
i have created plugin , contains jquery code. have integrate in umbraco cms.
the plugin load on content edit pages work on input fields.
i need integrate in umbraco admin screen of user add license key , other information. can provide link or tutorial me out in this.
i have looked packages well, how manage screen in umbraco plugin screen.
in umbraco, piece sounds hoping create entering license info called "dashboard". @ least that's first way go doing that. here's documentation extending backoffice dashboard: umbraco - extending backoffice - dashboards
to inject js umbraco backoffice, need create new plugin folder in app_plugins
folder , add package.manifest
file register of pieces of plugin in umbraco. if add package.manifest, inject javascript umbraco backoffice:
{ javascript: [ '~/app_plugins/myplugin/myplugincontroller.js' ] }
i wrote quick/sloppy plugin umbraco backoffice ways display node id of nodes in content tree when hover on them. umbraco this, plugin isn't extremely useful, serves example of can done. here's plugin, quickpeek plugin. there should link source code page. keep in mind you'd want use angularjs 1 write plugins instead of chucking jquery @ did.
in addition, can read lot of documentation. should off on right foot: extending umbraco. if documentation doesn't help, next thing @ source code popular umbraco packages behave yours. if making custom property editor, try looking @ nupickers
or nestedcontent
. if looking custom dashboard, new versions of usync
add 1 of those. examples. feel free dig source of umbraco package see in wild. if go umbraco - extending backoffice training great job of explaining how extend backoffice in pretty every way want.
Comments
Post a Comment