Expand my Community achievements bar.

Submissions are now open for the 2026 Adobe Experience Maker Awards.
SOLVED

Change the Tags view in AEM

Avatar

Level 3

Hi all,

 

We have tags on our site which are grouped in different levels. This causes that, when we go deep into these levels, we can't see their full names unless we hover them and the tooltip shows up.Chech the image attached. Is there any way to solve this or change the view? It's making some of the tag groups useless.

 

Thanks!

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Okay @mjdavid007 , here is the working solution. Ask your developers to install attached package.

sarav_prakash_0-1744239725697.png

  1. create clientlib folder with categories=cq.tagging.touch.admin
  2. Include a css file and include into clientlib
  3. Add the code 
    ._coral-AssetList-item ._coral-AssetList-itemLabel{
        text-overflow: initial;
        white-space: initial;
    }​
  4. Finally your tag admin will look like this sarav_prakash_1-1744239876496.png

tada....

 

View solution in original post

6 Replies

Avatar

Level 3

tags-aem.png

Avatar

Community Advisor

Definitely yes. Dont have a working example though. Previously have done coralUI clientlibs to customize console views. 

 

Refer to https://experienceleague.adobe.com/en/docs/experience-manager-65/content/implementing/developing/ext...

 

Here is an example to customize the Tag picker https://experience-aem.blogspot.com/2018/12/aem-6420-alphabetically-sort-tags-in-tag-picker-column-v...

And another example to customize console view https://experience-aem.blogspot.com/2020/08/aem-6550-aem-assets-show-tags-in-list-view.html

 

Using these examples, have to build a clientlib to NOT ellipsis the tag title. Instead wrap. 

Avatar

Level 3

Thanks for the reply. However, I don't know how to proceed or what to tell the developers with those...

Avatar

Correct answer by
Community Advisor

Okay @mjdavid007 , here is the working solution. Ask your developers to install attached package.

sarav_prakash_0-1744239725697.png

  1. create clientlib folder with categories=cq.tagging.touch.admin
  2. Include a css file and include into clientlib
  3. Add the code 
    ._coral-AssetList-item ._coral-AssetList-itemLabel{
        text-overflow: initial;
        white-space: initial;
    }​
  4. Finally your tag admin will look like this sarav_prakash_1-1744239876496.png

tada....

 

Avatar

Community Advisor

HI @mjdavid007 

I think you can achieve this via CSS, you need to create a custom clientlibs with category of 'granite.ui.coral.foundation.components'

 

arunpatidar_0-1744191381106.png

 

.cq-tagadmin-admin-childpages ._coral-AssetList-item ._coral-AssetList-itemLabel {
	text-overflow: unset;
	overflow: auto;
	white-space: break-spaces;
}

.cq-tagadmin-admin-childpages ._coral-AssetList-item{
    height: auto;
    min-height:40px
}

 

Arun Patidar

AEM LinksLinkedIn

Avatar

Administrator

@mjdavid007 Just checking in — were you able to resolve your issue?
We’d love to hear how things worked out. If the suggestions above helped, marking a response as correct can guide others with similar questions. And if you found another solution, feel free to share it — your insights could really benefit the community. Thanks again for being part of the conversation!



Kautuk Sahni