0

I have a use case. While going to DAM Asset Dialog in AEM 6.2,I want to add a property rootPath: /etc/tags/geometrixx to the tags field.

I am using the concept of overlay and resourceMerger. My dialog is under this

/libs/dam/content/schemaeditors/forms/default/items/tabs/items/tab1/items/col1/items/tags.

While Overlaying it in apps and add the property in it,it doesn't show anything.

Can anyone help me?

Shivani Garg
  • 735
  • 13
  • 37

2 Answers2

0

Just for testing i have replicated, and it works fine as expected Overlay DAM Asset Tags porperty

VAr
  • 2,551
  • 1
  • 27
  • 40
  • Please tell me the steps.You overlay or just copy the structure.Which version you are working with? – Shivani Garg Jan 16 '17 at 16:43
  • make sure you have the same folder types when you overlay as of libs, and i just copied the items node and added the rootpath property for the tags node. I have tested this in AEM 6.1 Below are the folder types i have created to overlay: /apps/dam -- nt:folder /apps/dam/content -- sling:Folder /apps/dam/content/schemaeditors -- sling:Folder /apps/dam/content/schemaeditors/forms -- sling:OrderedFolder /apps/dam/content/schemaeditors/forms/default -- sling:OrderedFolder – VAr Jan 16 '17 at 16:45
  • Please try it once with AEM 6.2.I have tried all this.But not successful till now – Shivani Garg Jan 16 '17 at 17:08
  • @ShivaniGarg For 6.2 implementation of forms overlay, Have a look over here from [adobe forum](http://help-forums.adobe.com/content/adobeforums/en/experience-manager-forum/aem-assets.topic.html/forum__8qjp-i_am_tryingtooverl.html) – VAr Jan 19 '17 at 16:59
0

Actually you can't do that by overlaying the dialog, you'll need to rely in DAM Metadata Schemas to achieve that - https://experienceleague.adobe.com/docs/experience-manager-64/assets/administer/metadata-schemas.html?lang=en

From there, and if you want to persist these definitions in your code baseline, you can refer to the location where it gets stored - /conf/global/settings/dam/adminui-extension/metadataschema

Hope it helps