


We have some validation while adding tags in asset metadata, so this validation taken care in addtags listener of cq:tags.
Now got a requirement to restrict this addtag validation for one particular content path. So while I try to get contentPath from inputField, but it always comes as null.
Please suggest how to get current content (asset) path in addtag listener of classic ui. AEM version: AEM6.2.SP1-CFP9.
addtag:
function(inputField, tag) {
console.log(inputField); --> it has contentPath property, but has null value always
contentPath = inputField.contentPath;
console.log(contentPath);
}
Views
Replies
Sign in to like this content
Total Likes
Finally I found to got way to get the content path in addtag listener of tag type in asset metadata editor:
function(f) {
contentPath = f.findParentByType("asseteditor").path;
console.log(contentPath);
}
Views
Replies
Sign in to like this content
Total Likes
Finally I found to got way to get the content path in addtag listener of tag type in asset metadata editor:
function(f) {
contentPath = f.findParentByType("asseteditor").path;
console.log(contentPath);
}
Views
Replies
Sign in to like this content
Total Likes