Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

Regarding AEM Sightly.!

Avatar

Level 4

Hi all,

 

I have some button in html like " <a href="#" class="btn btn-default stackbannersubmit">ENROL NOW</a>" When i pass the Value of 'ENROL NOW' that time only the button should need to visible. if i don't pass any value or 'ENROL NOW' it should't show any button. For that what i have to do, can any one help here.? 

1 Accepted Solution

Avatar

Correct answer by
Level 2

Hi,

if you are passing value to button from dialog you can use "data-sly-test" in sightly to if value is provided or not and show button.

<a data-sly-test="${properties.<field name>}" href="#" class="btn btn-default stackbannersubmit">ENROL NOW</a>

View solution in original post

2 Replies

Avatar

Correct answer by
Level 2

Hi,

if you are passing value to button from dialog you can use "data-sly-test" in sightly to if value is provided or not and show button.

<a data-sly-test="${properties.<field name>}" href="#" class="btn btn-default stackbannersubmit">ENROL NOW</a>