You can use the same method getAllTagsInGroup from the umbraco.editorControls.tags.library class to fetch the results. Function returns results as an XPathNodeIterator, which you can iterate to get the info you need.
Alternatively, use umbraco.cms.businesslogic.Tags.Tag.GetTags(group) directly (getAllTagsInGroup uses this as well) and returns a IEnumerable<Tag>
Tag cloud on usercontrol
hey, anyone implemented tag cloud on user control?
i'm having trouble getting the count of document that has tags.
Maybe show us some code snippet you've put together to help you further...
Cheers,
/Dirk
i'm looking for a way to do
but in c#
You can use the same method getAllTagsInGroup from the umbraco.editorControls.tags.library class to fetch the results. Function returns results as an XPathNodeIterator, which you can iterate to get the info you need.
Alternatively, use umbraco.cms.businesslogic.Tags.Tag.GetTags(group) directly (getAllTagsInGroup uses this as well) and returns a IEnumerable<Tag>
Hope this helps.
Regards,
/Dirk
thank you ! the editorcontrols will help, didn't know its there.
is working on a reply...