hi,
on my homepage i've put the tag cloud in the masterpage:
<uc1:TagCloud runat="server" ID="TagCloud1" TagGroupName="Content" ShowForDocumentTypes="CMS.MenuItem;foxlx.angebote;foxlx.bestseller;foxlx.links;foxlx.news;foxlx.top3seller;foxlx.vnavi"
AliasPath="/Home/%" QueryStringName="tagid" DocumentListURL="/Search" TagSeparator=" "
ZeroRowsText="Es wurden noch keine Schlagwöter vergeben..." />
that means the tags of the content of the documenttypes: CMS.MenuItem;foxlx.angebote;foxlx.bestseller;foxlx.links;foxlx.news;foxlx.top3seller;foxlx.vnav
should be shown, if one tag has been clicked it should open a new site (search.aspx) where i've put the repeater control:
<uc1:Repeater ID="CMSRepeaterTagCloudResults" runat="server" ClassNames="CMS.MenuItem;foxlx.angebote;foxlx.bestseller;foxlx.links;foxlx.news;foxlx.top3seller;foxlx.vnavi"
TransformationName="Community.Transformations.DocumentList"
HideControlForZeroRows="true" OrderBy="DocumentName" Path="/Home/%" />
everything works fine but i seems the repeater isn't responsive to the selected tag, it always shows the same selection or nothing. so what did i do wrong?
isn't it possible to create a global tagcloud (documentation says no)? i would like to put the tag cloud on any site in order to make navigation a little bit easier?
how can i do this?
thank you!