Is it possible to add / edit a property value on multiple media assets in list view?
Within Umbraco 7.6.3, in the media section, if I have multiple documents in list view, is there a way I can insert an additional column that shows me a property (i.e. textbox), in which I can put in content and do it all at one shot, rather than going into each property tab of each document?
If this was possible, where would I start my learning in implementing something like this? Or maybe the solution is already created?
Listview are not designed to update things inline. However, I think you could get around this by creating a custom listview, and then call a protected api to update the items which you are updating.
What you would need to do:
create a plugin folder with an html for the custom view
create a angularjs controller support the view
create a UmbracoAuthorizedApiController to enable updates
let your angularjs controller send updates to the api
However, I don't think a lot of people have tried this yet.
Is it possible to add / edit a property value on multiple media assets in list view?
Within Umbraco 7.6.3, in the media section, if I have multiple documents in list view, is there a way I can insert an additional column that shows me a property (i.e. textbox), in which I can put in content and do it all at one shot, rather than going into each property tab of each document?
If this was possible, where would I start my learning in implementing something like this? Or maybe the solution is already created?
Many Thanks
Hi,
Listview are not designed to update things inline. However, I think you could get around this by creating a custom listview, and then call a protected api to update the items which you are updating.
What you would need to do:
However, I don't think a lot of people have tried this yet.
Kind regards
Damiaan
is working on a reply...