Hello Guys,
I want to read the property of page level cq:tags which will be multivalue. If I trying to read the property by
pageNodes.getProperty("cq:tags").getValue().toString()
its saying cq:tags is multivalue. can anyone tell me how i can read this property.
Regards,
~BK
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Hello @a74048191r ,
Thanks for the response, I tried the lines that u posted. Unfortunately, it didn't work for me.
But I ended up with the solution that works for me. Posting Here so others can also use it if required.
private Value[] tagsFromPage;
for (Value eachTag : tagsFromPage) {
log.info("tagsFromPage value: {}", eachTag.toString());
}
try this:
Hello @a74048191r ,
Thanks for the response, I tried the lines that u posted. Unfortunately, it didn't work for me.
But I ended up with the solution that works for me. Posting Here so others can also use it if required.
private Value[] tagsFromPage;
for (Value eachTag : tagsFromPage) {
log.info("tagsFromPage value: {}", eachTag.toString());
}
@khamat_bn Can you please add the code on how you are storing the cq:tags values into the tagsFromPage array?
Views
Replies
Total Likes