AEM 6.0 Tagging Count Usage
I created a new component called "tagTest.jsp" and its dialog is as follows:
<?xml version="1.0" encoding="UTF-8"?> <jcr:root xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" jcr:primaryType="cq:Dialog" xtype="dialog"> <items jcr:primaryType="cq:Widget" xtype="tabpanel"> <items jcr:primaryType="cq:WidgetCollection"> <default jcr:primaryType="cq:Widget" title="Basic" xtype="panel"> <items jcr:primaryType="cq:WidgetCollection"> <tags jcr:primaryType="cq:Widget" allowBlank="false" cls="cq-propsdialog-tags" fieldLabel="Tags" name="./cq:tags" xtype="tags" /> </items> </default> </items> </items> </jcr:root>
A simple CQ.tagging.TagInputField, which stores a String[] of authored tags in the default "cq:tags" property. Slap the component on a page and author a tag on it, then when I head on over to http://localhost:4502/tagging and click the "Count usage" button, I don't get a single number in the "Count" column. I did a search through the forum first and saw this question which was "answered" but not very thoroughly: http://help-forums.adobe.com/content/adobeforums/en/experience-manager-forum/adobe-experience-manager.topic.html/forum__fzan-how_to_get_thecorre.html
Do I need to register my component to be included in this count? Is that even possible? How do I utilize the OOTB Tagging panel's Count usage in custom component implementations?
Thanks for any and all help!