[TYPO3-english] drop down breadcrumbs

BartÅ‚omiej ÅšwiÄtek emini1 at o2.pl
Wed Sep 3 12:41:24 CEST 2014


Hi,

I need to made breadcrumbs with drop down menu after mouseover. To do this I need by breadcrumbs menu put every pages from current level, like this:

main page
-a
--aa
--ab
---aba
---abb
--ac
-b
--ba
--bb
-c

this should give me this html for site aba:
main page |
<ul><li class="curr">a</li><li>b</li><li>c</li></ul> |
<ul><li>aa</li><li class="curr">ab</li><li>ac</li></ul> |
<ul><li class="curr">aba</li><li>abb</li></ul>

Now this is my TypoScript:

lib.breadcrumbs2 = HMENU
lib.breadcrumbs2 {
  special = rootline
  special.range = 0|-1
  1 = TMENU
  1{
	NO = 1
	NO{
		allWrap = ||<span class="next">></span>
	}
	CUR = 1
	CUR{
         stdWrap.field = title
         linkWrap = ||<span class="next">></span>
         doNotLinkIt = 1
	}
  }
}

this generate for me only path, without menu. Do you have any ideas? :)


More information about the TYPO3-english mailing list