Unable to Delete Tag Selection from Content Fragment Model | Community
Skip to main content
Level 2
August 31, 2020
Solved

Unable to Delete Tag Selection from Content Fragment Model

  • August 31, 2020
  • 2 replies
  • 2522 views

Hello, 

I am relatively new to AEM development but having an issue with the OOTB tagfield. We are using AEM 6.4. 

 

I have a content fragment model with a defined element as: 

 

<_x0031_597436678283 jcr:primaryType="nt:unstructured" sling:resourceType="cq/gui/components/coral/common/form/tagfield" fieldLabel="Platforms" forceSelection="true" listOrder="23" metaType="tags" multiple="true" name="platforms" renderReadOnly="false" rootPath="/content/cq:tags/Platforms" showEmptyInReadOnly="true" valueType="string[]"/>

 

Leveraging the tags, I can select as many options as I want as defined in the tag. Once added, I can only remove tags as long as at least one tag is still selected; I cant remove them all. 

 

IE. If I select A, B, and C from the tagPicker. Save. When I go to modify, if I try to remove all three and save, no update is made. If I try to remove two of the options, it will save just fine. However, after removing the two, I can never remove the final one (it wont save.) 

 

Is there a way to get around this? Not exactly sure what I am missing. 

 

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 Vijayalakshmi_S

Hi @aemrand,

Can you try to make forceSelection -> "false" instead of removing it. 

In 6.5, we have "required" property with value "on" if has to be mandatory and no other property(in particular forceSelection) related to mandate the selection.

Per the XML (from 6.4) shared in the post, I couldn't see the property "required". So try the above and let know if it help solves the issue.

 

Remove forceSelection property and add "required" property of "String" type with value -> "off

If you don't see progress, share the screenshot of your CFM with tagfield's Properties view(editor view) and CFM as a package if possible.

2 replies

SundeepKatepally
Community Advisor
Community Advisor
September 1, 2020

remove the mandatory validation on that field, Then it will start working.

AEMRandAuthor
Level 2
September 1, 2020
Not sure what I'm missing, but how do you remove the mandatory validation on that field? I tried with the forceSelection parameter removed, same issue.
Vijayalakshmi_S
Vijayalakshmi_SAccepted solution
Level 10
September 1, 2020

Hi @aemrand,

Can you try to make forceSelection -> "false" instead of removing it. 

In 6.5, we have "required" property with value "on" if has to be mandatory and no other property(in particular forceSelection) related to mandate the selection.

Per the XML (from 6.4) shared in the post, I couldn't see the property "required". So try the above and let know if it help solves the issue.

 

Remove forceSelection property and add "required" property of "String" type with value -> "off

If you don't see progress, share the screenshot of your CFM with tagfield's Properties view(editor view) and CFM as a package if possible.

AEMRandAuthor
Level 2
September 1, 2020

No luck there either. 😞 I tried removing it and tried setting it to false with no luck. 

 

The forceSelection attribute allows you to force the user to strictly select from the available tag options. Otherwise, you can type in anything you want as well.