AEM 6.3 How to show/hide tabs in a component based on the dropdown | Community
Skip to main content
CT1012
Level 4
July 26, 2018
Solved

AEM 6.3 How to show/hide tabs in a component based on the dropdown

  • July 26, 2018
  • 3 replies
  • 4856 views

I'm trying to show/hide add tabs as per the number i select in the drop down

PFA image for the dialog. If i select 2 from the sub Menu Style , only column1 and column 2 should be visible.

I tried some approach from

Home · aman02deep/aem-6.2 Wiki · GitHub

aem-6.2/tabshideshow.js at master · aman02deep/aem-6.2 · GitHub but they aren't working for me

It would be helpful if you provide me the same functionality with checkbox alongside drop down selection

TIA

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by m_naveed

Since release 3.19.0, ACS AEM Commons provides the functionality to show/hide dialog fields and tabs using dropdown selection or checkbox selection or the combination of both. Moreover, a required field validator is also available which applies validation only when the field is visible.

ACS AEM Commons: Show/Hide dialog fields/tabs with dropdown, checkbox or the combination of both

3 replies

m_naveed
m_naveedAccepted solution
November 6, 2018

Since release 3.19.0, ACS AEM Commons provides the functionality to show/hide dialog fields and tabs using dropdown selection or checkbox selection or the combination of both. Moreover, a required field validator is also available which applies validation only when the field is visible.

ACS AEM Commons: Show/Hide dialog fields/tabs with dropdown, checkbox or the combination of both

March 22, 2024

When we drag a tab component, I want tab 1 and tab 2 to appear, but I also want a picture that the author can move to appear by default instead of tab 1 text. Is that possible?

arunpatidar
Community Advisor
Community Advisor
November 6, 2018

Hi,

For checkbox you can use same code except binding on select event, you need to call your code to show hide on change event.

e.g.

$(".checkbox").change(function() {

    if(this.checked) {

        //Do stuff

    }

});

Arun Patidar
November 4, 2022

Hi @ct1012, If you have found the solution for this. Can you please share.