Tagfield Component Mandatory Property is not working as expected in AEM 6.3
Hello,
We have done Asset metadata customization in our application.
While upgrading from AEM 6.2 to AEM 6.3 and as part of that we are supposed to update tagspicker component as tagfield component.
Now we are not able to make it as mandatory even though we set required property as "true".
Which means it shows as "*" in the field when we set required as true in touch UI however its not validating when we click on save and close or save button.
Could someone let me know if this is know issue ?
<items jcr:primaryType="nt:unstructured">
<tagcategory
jcr:primaryType="nt:unstructured"
sling:resourceType="/libs/cq/gui/components/coral/common/form/tagfield"
fieldLabel="Category"
required="{Boolean}true"
multiple="{Boolean}true"
rootPath="<category-path>/category"
name="./jcr:content/metadata/dps:category">
<datasource
jcr:primaryType="nt:unstructured"
sling:resourceType="<data-source-path>/all-datasource/category"/>
<values
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/foundation/form/autocomplete/tags"/>
<options
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/foundation/form/autocomplete/list"/>
</tagcategory>
<items>
Thanks,
GVK