Posts

Showing posts from October, 2021

Customizing Detect Duplicate Result

Image
Customizing Detect Duplicate Result We have seen in the previous blog how we can detect any duplicate asset and the result contains a list of all the duplicate assets. Now if you have noticed when you click on the items in the list, it is not redirecting to the respective assets. So, if you want to know how you can achieve that follow this blog. The duplicate detect dialog is as shown below. To summarize, here I am trying to upload def.jpg, but it’s duplicates already present in the dam so I am getting those assets list in the result. As you can see the result is non-clickable and cannot redirect to the corresponding images. In order to achieve clickable result or if you want it to redirect you to those assets follow below steps. First step is to find the script that is responsible to render this response. After debugging, I found that " /libs/dam/gui/coral/components/commons/fileupload/clientlibs/fileupload/js/fileupload.js "  is responsible for rendering this dialog. ...