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

HeenaMadan
HeenaMadan
Online

Badges

Badges
17

Accepted Solutions

Accepted Solutions
13

Likes Received

Likes Received
54

Posts

Posts
52

Discussions

Discussions
12

Questions

Questions
40

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by HeenaMadan
Customize the badges you want to showcase on your profile
Re: Error while setting up dispatcher at local for AEM as Cloud - Adobe Experience Manager 12-08-2022
Did you open localhost:8080 and It would be good if you share logs? Refer this blog https://codingwithtea.blogspot.com/2021/10/aem-dispatcher-setup-windows.html

Views

37

Like

1

Replies

0
Re: request getattribute in Sightly set from slingmodel - Adobe Experience Manager 10-08-2022
@Nikhil_Verma yup there is no way to access request getattribute directly in sightly. We can use either js or separate model to get setted value.

Views

66

Like

1

Replies

0
Re: request getattribute in Sightly set from slingmodel - Adobe Experience Manager 10-08-2022
@arunpatidar Use case is different. I need to set value in request parameterin model1.java andneed this value in different model model2, which si working fine in my implemenation. Thanks Heena

Views

66

Like

1

Replies

0
request getattribute in Sightly set from slingmodel - Adobe Experience Manager 09-08-2022
I am trying to get attribute value set in Slingmodel class. Below code is used to set value of attribute "mycustomparam" in sling model. model1.java request.setAttribute("mycustomparam", "value"); But unable to get this value in HTL I have tried ${request.attribute @ mycustomparam} In other model2.java, i am able to get this value using request.getAttribute('mycustomparam'); Is there any way to get value in sightly instead of model?

Views

96

Likes

0

Replies

5
Re: AEMaaCS DAM permissions - limit one folder to jcr:read, others jcr:all - Adobe Experience Manager 09-08-2022
Provide deny write access to access to /content/dam/aem-training-documentation folder Permission: deny Access: write folder path: /content/dam/aem-training-documentation

Views

39

Likes

2

Replies

0
Re: servlet in satisfied status not active - Adobe Experience Manager 09-08-2022
Please check all reference variables are successfully referenced in impl class of the servlet. Go to http://localhost:4502/system/console/components find servlet and check all Reference implementations by click servletpath. It would be good if you share reference servlet code

Views

51

Like

1

Replies

0
Re: logs not getting updated when running AEM inside windows - Adobe Experience Manager 09-08-2022
there is nothing related to Operating system windows/linux. Close file explorer, Open /crx-quickstart\logs , refresh and open logs in notepad++ or any other app and reload if required.

Views

71

Likes

2

Replies

0
Re: What is the difference between @Inject and @ValueMapValue in simple words. - Adobe Experience Manager 09-08-2022
The injected fields are normally the properties of a component (which the content authors normally set via component dialog). @inject: @Model(adaptables=Resource.class) public class MyModel { @Inject private String propertyName; } In this case, a property named "propertyName" will be looked up from the Resource (after first adapting it to a ValueMap) and it is injected. Avoid @Inject. Value injection happens at runtime. If you use @inject then you are making the framework do extra guesswork. It ...

Views

118

Like

1

Replies

0
Re: Load device specific HTML - Adobe Experience Manager 08-08-2022
domain would be same, device specific html would be loaded on basis of detected user-agent- mobile/desktop. Use selector base approach to load page. try this for mobile device types. If user agent matches with mobile device type then page with selector "mobile" would get loaded. RewriteEngine On RewriteCond %{REQUEST_URI} .html$ RewriteCond %{HTTP_USER_AGENT} "android|blackberry|googlebot-mobile|iemobile|ipad|iphone|ipod|opera mobile|palmos|webos" [NC] RewriteRule ^/(.*)\.html$ /$1.mobile.html ...

Views

64

Like

1

Replies

1
Re: my child tittle is not coming in list in sightly - Adobe Experience Manager 08-08-2022
Use below way to print title of all child pages: ${industryModel.linkPath} ${item} //gives title of all child pages as it is the current item in the iteration.

Views

74

Likes

3

Replies

0