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
With forms is it possible to update the following:
2.On entry page show approve / delete button.
Regards
Ismail
Hi Ismail,
Don't think that is possible out of the box.
But with some angular "hacking" you should be able to do this.
You can use interceptors to replace the default view with your own.
http://skrift.io/articles/archive/changing-backoffice-functionality-without-changing-core-code/
I don't know if the API call for the dashboard shows all the data needed, but you can use a WebApiHandler to add extra data if needed.
Example webapi handler
https://github.com/jbreuer/Hybrid-Framework-for-Umbraco-v7-Best-Practises/blob/master/Umbraco.Extensions/Utilities/WebApiHandler.cs
Registering WebApiHandler
https://github.com/jbreuer/Hybrid-Framework-for-Umbraco-v7-Best-Practises/blob/master/Umbraco.Extensions/Events/UmbracoEvents.cs#L67
Downside of this approach is that it can break with every forms upgrade.
Dave
cool cheers. I have used interceptor before well when i say used i mean i nicked code from Jeroens hybrid mvc project and used that.
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
customise dashboard and form entry pages
With forms is it possible to update the following:
2.On entry page show approve / delete button.
Regards
Ismail
Hi Ismail,
Don't think that is possible out of the box.
But with some angular "hacking" you should be able to do this.
You can use interceptors to replace the default view with your own.
http://skrift.io/articles/archive/changing-backoffice-functionality-without-changing-core-code/
I don't know if the API call for the dashboard shows all the data needed, but you can use a WebApiHandler to add extra data if needed.
Example webapi handler
https://github.com/jbreuer/Hybrid-Framework-for-Umbraco-v7-Best-Practises/blob/master/Umbraco.Extensions/Utilities/WebApiHandler.cs
Registering WebApiHandler
https://github.com/jbreuer/Hybrid-Framework-for-Umbraco-v7-Best-Practises/blob/master/Umbraco.Extensions/Events/UmbracoEvents.cs#L67
Downside of this approach is that it can break with every forms upgrade.
Dave
cool cheers. I have used interceptor before well when i say used i mean i nicked code from Jeroens hybrid mvc project and used that.
Regards
Ismail
is working on a reply...