Hi All,
I am trying to customize the content finder, so added new button on the content finder and click on the button it has to show assets in alphanumeric order. i am looking for all the assets from DAM has to sort and display at content finder field.
i have done the customization on the EXTJS side, Sorting happens only on the last recent assets. But looking for all the assets from DAM has to sort.
The default behavior of CQ is loads 20 assets from DAM with the last modified date using GQL Query.
i got a content finder service and try to change the order by from lost modified into name, but its not working.
Is there any possible to achieve from CQ?
Thanks,
Michael
Solved! Go to Solution.
Views
Replies
Total Likes
If you are using AEM 6.x, make sure you have the relevant indexes created as oak doesnt index automatically
Views
Replies
Total Likes
Hi Michael,
Please take a look @ Content Finder Query Builder : https://adobe-consulting-services.github.io/acs-aem-commons/features/contentfinder-querybuilder.html
Views
Replies
Total Likes
edubey wrote...
Hi Michael,
Please take a look @ Content Finder Query Builder : https://adobe-consulting-services.github.io/acs-aem-commons/features/contentfinder-querybuilder.html
Hi Thanks for your reply.
we tried with query-builder. There is a big impact on our performance side. its take much time to load a page. :(
Views
Replies
Total Likes
If you are using AEM 6.x, make sure you have the relevant indexes created as oak doesnt index automatically
Views
Replies
Total Likes
A possible solution would to do not execute this query on every page load rather you can implement your custom scheduler which will probably run every 2 hours or when loads on system is less. The task of scheduler will be store this result at some location from where content finder will pick. It will reduce your query execution as well as page load will not get affected.
Views
Replies
Total Likes
bsloki wrote...
If you are using AEM 6.x, make sure you have the relevant indexes created as oak doesnt index automatically
Hi,
Thanks for your reply. We are using 5.6.1. Its indexing only last modified date.
Views
Replies
Total Likes
edubey wrote...
A possible solution would to do not execute this query on every page load rather you can implement your custom scheduler which will probably run every 2 hours or when loads on system is less. The task of scheduler will be store this result at some location from where content finder will pick. It will reduce your query execution as well as page load will not get affected.
Hi Thanks for your idea.
as per your approach, whenever dam updated with new assets i can run the scheduler/ workflow to sort the assets and keep it in remote location.
Views
Replies
Total Likes
Views
Replies
Total Likes