Project

General

Profile

Bug #87130

Updated by David Bruchmann over 5 years ago

According to the documentation https://docs.typo3.org/typo3cms/TyposcriptReference/latest/MenuObjects/Tmenu/Index.html for a TMENU a target can be entered. 
 In Version 9.5.1 this has no impact. 
 <pre> 
         20 = HMENU 
         20 { 

             entryLevel = 0 

             1 = TMENU 
             1 { 
                 target = "_top" 

                 NO { 
                     text = nav_title // title 
                     wrapItemAndSub = <li>|</li> 
                 } 
             } 
         } 
 </pre> 

 Also 'altTarget' for TMENUITEM is not working 
 <pre> 
         20 = HMENU 
         20 { 

             entryLevel = 0 

             1 = TMENU 
             1 { 
                 target = "_top" 

                 NO { 
                     text = nav_title // title 
                     wrapItemAndSub = <li>|</li> 
                     altTarget = someTarget wrapItemAndSub=<li>|</li> 
                 } 
             } 
         } 
 </pre>

Back