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: Unpublished Content backup - Adobe Experience Manager 14-05-2018
You can use the following example in AEM fiddle tools and create a dynamic package.Adobe Experience Manager Help | Creating Adobe Experience Manager Packages using the JcrPackageManager.API Here are the steps:1) Install ACS commons and tools package2) Open AEM fiddle tool http://localhost:4505/etc/acs-tools/aem-fiddle.htmlSelect servlet option tweak the code given in the above link according to your requirement for example execute the query to find out all pages which does not have cq:lastReplic...

Views

1.1K

Like

1

Replies

0
Re: Static components on static templates? - Adobe Experience Manager 14-05-2018
What i ended up doing was using an iparsys in the page and creating child pages.

Views

440

Likes

0

Replies

0
Re: Help with learning AEM for Front end Developer(HTML, CSS, JS) - Adobe Experience Manager 14-05-2018
Hi,you can refer Rules for AEM front end developmentThanksArun

Views

997

Likes

0

Replies

0
Re: AEM6.3 - Dialog with "Add" button adding a group of fields - Adobe Experience Manager 13-05-2018
yes, this is not difficultyou can refer Adobe Experience Manager Help | Dynamically modifying an Adobe Experience Manager Touch UI Dialog which demonstrate dynamically modifying(show/hide) fields based on selection.

Views

620

Likes

0

Replies

0
Re: AEM6.3 QueryBuilder- Using groups of predicates when at least one group must satisfy all conditions - Adobe Experience Manager 13-05-2018
group: This predicate is used to create logical conditions in your query. You can create complex conditions using OR & AND operators in different groups. e.g: Exampletype=nt:basepath:/content/AEM63App/engroup.1_property=jcr:createdgroup.1_property.value= admingroup.1_property=jcr:titlegroup.1_property.value=Travelgroup.1_property.and=truegroup.2_property=jcr:primaryTypegroup.2_property.value=cq:PageContentgroup.p.or=true this query will return result if (jcr:created==admin AND jcr:title ==Travel...

Views

635

Likes

0

Replies

0
Re: understanding initial content vs structure - editable templates in aem - Adobe Experience Manager 12-05-2018
Hi,initial: Initial Content mode is used to define content that will appear when a page is first created based on the template.The initial content can then be edited and removed by page authors. e.g. dummy content structure:The structure allows you to define the structure of the template.The components defined in the template level can’t be removed from the resulting page.If you want that template authors can add and remove components, add a paragraph system to the template.Components can be loc...

Views

2.0K

Like

1

Replies

0
Re: aem 6.4 page properties: select options broken when last field - Adobe Experience Manager 19-09-2019
It solved the problem! thanks.I hope that Adobe provide a real fix in some update.

Views

829

Likes

0

Replies

0
Re: Multi level list with bullet point/number - Adobe Experience Manager 11-05-2018
yes, you can do for that you need to write below css in your clientlibsul{list-style-type: disc;}please specify outer wrapper class also to applicable this changes within scope.e.g..page__main ul{list-style-type: disc;}it will convert all your bullet list style to disc.

Views

719

Likes

0

Replies

0
Re: AEM 6.4 - Java sling servlet does not work with uber 6.4 jar, but does with uber 6.3 - Adobe Experience Manager 15-05-2018
Thank you Jorg! That was it, I needed to add those OSGI dependencies and update my bundles.It is loading and looks good now.

Views

2.1K

Likes

0

Replies

0
Re: AEM - Java servlet can't register on fresh 6.4 install - Adobe Experience Manager 12-07-2018
Also make sure you are not using JcrResourceResolverFactory or loginadministrator to get resourceResolver object and use system user to get the resolver as shown belowMap param = new HashMap();param.put(ResourceResolverFactory.SUBSERVICE, "user");ResourceResolver resolver = null;try { resolver = resolverFactory.getServiceResourceResolver(param); session = resolver.adaptTo(Session.class);}...Hope it helps!

Views

954

Likes

0

Replies

0