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

Hemant_arora
Hemant_arora
Offline

Badges

Badges
29

Accepted Solutions

Accepted Solutions
54

Likes Received

Likes Received
98

Posts

Posts
291

Discussions

Discussions
96

Questions

Questions
195

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Hemant_arora
Customize the badges you want to showcase on your profile
Using Sightly with javascript json object - Adobe Experience Manager 07-04-2016
HiI am trying to convert an existing component jsp to sightly html.The jsp has the following code: var MY_CAROUSEL_PARAMS_A = { control: { controls: ${properties.controlsType eq 'controls' ? 'true' : 'false'} <c:if test="${properties.controlsType eq 'pager' || properties.controlsType eq 'both'}" >, pager: { center: ${properties.centerNav eq 'true' ? '1' : '0'}, buildPager: function(pageIndex){ var hoverImage = ''; var hoverText = ''; var hoverWidth = ''; switch(pageIndex){ <c:forEach var="slide" varStatus="loop" items="${carouselSlides}"> case ${loop.index}: hoverImage = '${slide.value.tooltipImgPath}'; hoverText = '${slide.value.tooltipText}'; hoverWidth = '${slide.value.tooltipWidth}'; break; </c:forEach> } } } </c:if> },I am able to get most of the values using sightly inside the script tag.But how do I implement the or tags in sightly inside a script tag for the above code in bold font.

Views

2.1K

Likes

0

Replies

2
Re: Delete rolled out pages in one shot - Adobe Experience Manager 02-04-2016
Simply write a sling servlet or a service and inside that write a query searching for the pages which have been rolled out, like while being rolled out every page must have been added with some property. In your query search pages with that property and delete all the pages which comes as a result.

Views

148

Likes

0

Replies

0
Re: /apps not populating in crxde - Adobe Experience Manager 01-04-2016
Thanks for the reply. Can you please share the path of the Node Path widget ?

Views

431

Likes

0

Replies

1
Re: /apps not populating in crxde - Adobe Experience Manager 01-04-2016
Katuk , you did not understand my question.Searching by component node name is working but relative path is not working which used to work in 5.6.1Can you try searching "geometrixx/components/homepage "

Views

431

Likes

0

Replies

0
/apps not populating in crxde - Adobe Experience Manager 01-04-2016
HiIn previous versions of AEM, whenever we entered relative path in the search bar , it used to auto populate the absolute path e.g. if I enter abc/component/mycomp it used to populate /apps/abc/component/mycomp. However the same does not happen in AEM 6.1Can someone please help if something needs to be enabled or this feature has been removed ?

Views

574

Likes

0

Replies

6
Re: required and maxlength properties in rich text field - Adobe Experience Manager 31-03-2016
The RTE does not support max length and required properties.Alternatively you can use allowBlank= false for required and for maxlength you can add a listener (validator) on click of OK button of dialog checking the length of the characters entered in RTE and validate accordingly.

Views

1.4K

Likes

0

Replies

0
Re: Issues in JSP compilation. - Adobe Experience Manager 29-03-2016
As edubey mentioned, check the bundle in felix console and click on the bundle and see the exported packages value.If it is empty, click on the refresh packages button on top right.If its still empty, then check the pom.xml of the project and add the package to exported packages tagor move the specific class that you are calling in your jsp to a package which is exported, There are several ways you can fix it.

Views

281

Likes

0

Replies

0
Re: having a editable select(drop down) in Adobe AEM - Adobe Experience Manager 26-03-2016
You can add combobox widget with xtype as "combo" in the custom component dialog and add the property editable ,value= true.For events and other functions you can refer to https://docs.adobe.com/content/docs/en/cq/5-6-1/widgets-api/index.html

Views

286

Likes

0

Replies

0
Re: What's New Component - Adobe Experience Manager 26-03-2016
Create a custom componentCreate a dialog and add a number field to dialog for entering the number of pagesAlso add a pathfield to select a parent folder under which you keep the new pagesIN your jsp or html write logic like read the last replicated on property of the pages and sort them in asc/desc order, the way you want

Views

105

Likes

0

Replies

0
Re: Maven Dependencies - Adobe Experience Manager 26-03-2016
You are using the wrong artifact.Change it to below: com.cognifide.slice slice-mapper-api 3.1.0

Views

5.0K

Likes

0

Replies

0