Project

General

Profile

Bug #78342

Updated by Josef Glatz about 8 years ago

How do the following ViewHelper work in the new version TYPO3 8.4.0? 

 h1. 1  

 @{objects #1  
 {objects -> f:count()}@ f:count()} 

 my output is always 1 or 0 

 h1. 2 #2 

 @<f:widget.paginate <f:widget.paginate objects="{blogs}" as="paginatedBlogs" configuration="{itemsPerPage: 5, insertAbove: 1, insertBelow: 0, maximumNumberOfLinks: 10}">@ 10}"> 
 use @{paginatedBlogs}@ {paginatedBlogs} as you used @{blogs}@ {blogs} before, most certainly inside 
 a <f:for> loop. 
 @</f:widget.paginate>@ </f:widget.paginate> 

 my output is only the first page

Back