Reputation: 35
We have a requirement to customize the OOB Assest share and assest editorcomponent in AEM 6.2.(available at /libs/dam/components/asseteditor &/libs/dam/components/assetshare path respectively)
Few challenges I can see: 1.The component dialog is available only in Classic UI but we want the same in touch UI mode. 2.Can we get the Java code of these components so that we can customize the functionality? What is the best way to achieve this?
Upvotes: 1
Views: 426
Reputation: 3444
The assetshare and asseteditor components are there to make pages that layer the DAM interface with a simpler functionality. Theses components are not in TouchUI (as of 6.2) but even if they were, these would be like core components with limited functionality. You can overlay these and provide your own templates and components just like normal component extension. All the code is in JSP under the respective components.
These components are not responsive but the genrated page can be made responsive.
Upvotes: 1