Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

mikezooz
mikezooz
Offline

Badges

Badges
22

Accepted Solutions

Accepted Solutions
1

Likes Received

Likes Received
18

Posts

Posts
75

Discussions

Discussions
10

Questions

Questions
65

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by mikezooz
Customize the badges you want to showcase on your profile
Is that possible to apply two CSS for text component? - Adobe Experience Manager 20-10-2015
Hi All,My requirement is, i have to apply normal CSS for author environment and Bootstrap for publish environment. so i have added below code its taken as normal CSS. could you please help me how to proceed. <%@include file="/libs/foundation/global.jsp"%><%@ page import=" com.day.cq.wcm.api.WCMMode" %><% (WCMMode.fromRequest(request) == WCMMode.EDIT) { %> <%}else if(WCMMode.fromRequest(request) == WCMMode.PREVIEW){%> <%out.print("preview");}%> Regards,Michael

Views

1.1K

Likes

0

Replies

1
Activation properties are not added in page - Adobe Experience Manager 15-10-2015
Hi All,i have created custom workflow, which include more steps for approval and finally it has to activate the page. i have used default process for activation(ie Activate Page) . it activate the page successfully and added the entry on the audit log but its not add the property on the current node.(repliaction Property, last replication time, etc)There is no error in consoleThanks,Michael

Views

1.4K

Likes

0

Replies

1
How to sort the assets ascending order using query builder? - Adobe Experience Manager 15-10-2015
Hi,i tried to sort the assets to alpha numeric format using query builder.The below Query executing but i dont get the result in ascending order. /jcr:root/content/dam//element(*, dam:Asset) [(jcr:content/metadata/@dam:MIMEtype = 'image/jpeg' or jcr:content/metadata/@dam:MIMEtype = 'image/png' or jcr:content/metadata/@dam:MIMEtype = 'image/jpg' ) ]order by jcr:content/@jcr:title ASC Please help me how to proceed.Thanks,Michael

Views

4.0K

Likes

0

Replies

2
Re: How to change the settings of apache lucene in AEM 5.6.1? - Adobe Experience Manager 15-10-2015
justin_at_adobe wrote... Hi, This does not require reconfiguring Lucene. All you need to do is modify the Content Finder tab (/libs/wcm/extensions/contentfinder/images.js in this case). Specifically, what you would do is modify the JavaScript to add "order:jcr:content/metadata/dc:title" to the submitted query term. You can also review http://jackrabbit.apache.org/api/2.1/org/apache/jackrabbit/commons/query/GQL.html for a description of the query language used here. In some complex cases, you may...

Views

1.1K

Likes

0

Replies

0
How to change the settings of apache lucene in AEM 5.6.1? - Adobe Experience Manager 15-10-2015
Hi All,The current behavior of Content finder is display the assets in the order of last modified date. i want to change it into alpha numeric format.i referred in online and got to know that, apache lucene is indexing only on last modified date of the assets which is present in DAM.i want to change the configuration of apache lucene from last modified date into name or title of the assets. please help me how to proceed. , Thanks,Michael

Views

1.5K

Likes

0

Replies

4
How to sort the elements in content finder? - Adobe Experience Manager 15-10-2015
Hi All,I have a requirement to add a new button on the content finder and sort the assets in alpha numeric format.i just override the libs\wcm\extention\contentfinder\image.js file into apps\wcmand done the below changes. its not sorting. Please help me how to fix the issue { "toggleGroup": "cfTab-Images-TG", "enableToggle": true, "toggleHandler": function(button, pressed) { var tab = CQ.Ext.getCmp("cfTab-Images"); if (pressed) { tab.dataView.tpl = new CQ.Ext.XTemplate(CQ.wcm.ContentFinderTab.TH...

Views

738

Likes

0

Replies

1
Re: How to sort the assets in alphanumeric at content finder? - Adobe Experience Manager 15-10-2015
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/ wo...

Views

1.1K

Likes

0

Replies

0
Re: How to sort the assets in alphanumeric at content finder? - Adobe Experience Manager 15-10-2015
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

1.1K

Likes

0

Replies

0
Re: How to sort the assets in alphanumeric at content finder? - Adobe Experience Manager 15-10-2015
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

1.1K

Likes

0

Replies

0
How to sort the assets in alphanumeric at content finder? - Adobe Experience Manager 15-10-2015
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...

Views

2.3K

Likes

0

Replies

7