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

sagrawal
sagrawal
Offline

Badges

Badges
11

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
3

Posts

Posts
29

Discussions

Discussions
10

Questions

Questions
19

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by sagrawal
Customize the badges you want to showcase on your profile
Re: How can deploy my angular change without build full AEM project - Adobe Experience Manager 19-11-2020
Yes. I am using angular and to deploy simple js change in component required full project build

Views

436

Likes

0

Replies

0
How I can add bootstrap css in angular SPA - Adobe Experience Manager 05-11-2020
Just need a suggestion on below points. How I can add bootstrap css in angular SPA project - I have added bootstrap under client libs but not able to load in use in my angular project (ui.frontend).

Views

335

Likes

0

Replies

0
Re: How can we import a external website in AEM 6.5 - Adobe Experience Manager 21-10-2020
@sagrawal - As per my understanding there is no such importer which just imports the external site by providing the endpoint. Your external side should either expose the data using XML or JSON which can be consumed in AEM to create pages and site. Same way you need to get the styling as part of clientlibs. So migrating one or two pages is easy but whole site will require a kind of whole new setup.Thanks,Nikhil

Views

979

Like

1

Replies

0
Re: Disable Link Filtering in AEM for JSON response from... - Adobe Experience Manager 12-10-2020
@sagrawal You’re welcome Sure, i will check your query related "Custom Component: Style tab is not showing" & provide if any inputs that i can share.

Views

833

Likes

0

Replies

0
Re: Custom Component: Style tab is not showing - Adobe Experience Manager 12-10-2020
Hi @sagrawal,Delete the cq:design_dialog node you have created and copy & paste from one of the core components say - /apps/core/wcm/components/list/v2/list/cq:design_dialog and check if it works. (Just to check if it is because of human error)If it does, retain styletab node alone and remove the rest. (Update "jcr:title" of cq:design_dialog node)

Views

495

Like

1

Replies

0
Re: AEM : Style Integration - Adobe Experience Manager 08-10-2020
Thanks for above information. 1. Is there any other approaches also that we follow for custom stylings.2. I am developing a list components and want to give provision to author on couple options to show list as a) Grid option b) Carousel c) Horizontal So do we have some OOB AEM options (classes/functions) to achieve this.

Views

502

Likes

0

Replies

0
Re: Unable to Prevent LinkChecking on Servlet Request - Adobe Experience Manager 02-10-2020
I am new to AEM but facing same issue. Can you please help with some screen shots or detail steps how you have resolved this. This ther any node to be create under project ?I also checked below URL, I don't see any JSON entry.http://localhost:4502/system/console/status-slingrewriter.txt

Views

529

Likes

0

Replies

0
Re: How add custom font in in project - Adobe Experience Manager 23-09-2020
@sagrawal,You can create a resources folder within your client library so that you store static assets, your font files. Your font files can then be accessed via the client library proxy URL within your style sheet. For some code, samples check out this blog article here - https://sourcedcode.com/blog/aem/3-different-ways-to-embed-custom-fonts-in-aem-sites

Views

362

Like

1

Replies

0
Re: In template how to create 3 column layout - Adobe Experience Manager 20-09-2020
Resizing won't work by default, you need to add grid.less file in your client library.Can you please try by placing below script. @Import "/etc/clientlibs/wcm/foundation/grid/grid_base.less"; /* maximum amount of grid cells to be provided */ @max_col: 12; @grid-gutter-width: 24px; /* default breakpoint */ .aem-Grid { .generate-grid(default, @max_col); width: auto; } /* phone breakpoint */ @media (max-width: 650px) { .aem-Grid { .generate-grid(phone, @max_col); } } /* tablet breakpoint */ @media ...

Views

705

Like

1

Replies

0