When various listviews use the same docType as children, is there any way to alter the text in the "Create XXX" button on a per container basis?
I have several containing folders configured as ListViews representing different categories of article but the underlying docType for an article is "Blog". Editors are kicking off that they're invited to "Create Blog Article" instead of whatever the Category is, i.e. "Create <Category> Article"
List View Create XXX button text
V7.15.3
When various listviews use the same docType as children, is there any way to alter the text in the "Create XXX" button on a per container basis?
I have several containing folders configured as ListViews representing different categories of article but the underlying docType for an article is "Blog". Editors are kicking off that they're invited to "Create Blog Article" instead of whatever the Category is, i.e. "
Create <Category> Article
"Any pointers would be appreciated.
//Craig
Hi Craig,
Looks like it's not configurable "just like that" - here's the View:
https://github.com/umbraco/Umbraco-CMS/blob/794976dda73384137a9e274b5366b7b64bdc2594/src/Umbraco.Web.UI.Client/src/views/propertyeditors/listview/listview.html#L15-L20
So unless you rename the DocumentType it looks like it's not changing.
Either that, or create a separate custom ListView where you can look up the category and put it in the button... ?
E.g.:
/Chriztian
is working on a reply...