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

arunpatidar
arunpatidar
Online

Badges

Badges
57

Accepted Solutions

Accepted Solutions
1211

Likes Received

Likes Received
2755

Posts

Posts
4263

Discussions

Discussions
1043

Questions

Questions
3223

Ideas

Ideas
26

Blog Posts

Blog Posts
9
Top badges earned by arunpatidar
Customize the badges you want to showcase on your profile
Re: Help with DB connection - Adobe Experience Manager 22-05-2018
Hi,you need to enter below details for 3 fields based on database server which you are trying to connect, for example for MySQL1. Connection URI --> jdbc:mysql://:/2. MySQL database login user (e.g. root)3. MySQL database login password (e.g. root)Hope this helps!

Views

10.6K

Likes

0

Replies

5
Re: Are event properties like resourceAddedAttributes and resourceChangedAttributes no longer supported in AEM 6.3? - Adobe Experience Manager 22-05-2018
I thinks , this is duplicate post for AEM 6.3 Event problem

Views

715

Likes

0

Replies

0
Re: AEM 6.3 Event problem - Adobe Experience Manager 22-05-2018
I try to get changed property using ResourceChangeListenerbut according to documentation getChangedPropertyNames() is deprecated.ResourceChange (Apache Sling 9 API) I am not sure if there is any alternative to this method or use JCR Events Listeners instead of ResourceChangeListener

Views

4.8K

Likes

0

Replies

4
Re: AEM 6.3 Event problem - Adobe Experience Manager 22-05-2018
Hi,I am able to listen property changes in AEM 6.3I have added JCR events like below:protected void activate(ComponentContext context) throws Exception { session = repository.loginService("readService",null); observationManager = session.getWorkspace().getObservationManager(); observationManager.addEventListener(this, Event.PROPERTY_ADDED | Event.PROPERTY_CHANGED, "/content/AEM63App/fr/jcreventpage", true, null, new String[]{"cq:PageContent","nt:unstructured"} , true); //logger.debug("**********...

Views

4.8K

Likes

0

Replies

0
Re: AEM 6.1 - Unlocking a page - Adobe Experience Manager 22-05-2018
Hi Venkat,you need to go to content explorer and admin will be able to unlock from therehttp://localhost:4502/crx/explorer/browser/index.jsp

Views

678

Likes

0

Replies

0
Re: Are event properties like resourceAddedAttributes and resourceChangedAttributes no longer supported in AEM 6.3? - Adobe Experience Manager 22-05-2018
Hi,It seems, it is deprecated you can try to use ResourceChangeListerner instead.org.apache.sling.api.SlingConstants.TOPIC_RESOURCE_CHANGEDRegister a ResourceChangeListener insteadhttp://static.javadoc.io/org.apache.sling/org.apache.sling.api/2.11.0/deprecated-list.html ThanksArun

Views

715

Likes

0

Replies

0
Re: fieldDescription property is not appearing in proper alignment? - Adobe Experience Manager 22-05-2018
Hi Rashid,I would suggest to make your own CSS rule for this tool-tip div and apply width:100%.But if you have text which won't be fit in a single line, you will face the same problem again.I am not sure why you want to do that. anyway t=you can play with CSS to achieve this.ThanksArun

Views

644

Like

1

Replies

0
Re: AEM 6.3 Event problem - Adobe Experience Manager 22-05-2018
Hi,You can try below to get Session using below to observe JCR events.session = repository.loginService("subservice-name", null);More Info SlingRepository (Apache Sling 7 API) ThanksArun

Views

4.8K

Likes

0

Replies

1
Re: Able to see only 2 options on edit mode - Adobe Experience Manager 22-05-2018
Hi,FYI, I am also able to replicate the issue only after removing modify permission from content folder for the user. Apart from that I am getting all the options.

Views

447

Likes

0

Replies

2
Re: How to configure component to use whole width of parent layout container - Adobe Experience Manager 22-05-2018
Hi,Can you please check your CSS, may be your custom CSS overriding the normal behaviuor.you can do inspect elements and check the column and title components CSS rules.

Views

823

Likes

0

Replies

2