是否可以向此小部件添加自定义CSS类:
<f:widget.paginate objects="{products}" as="paginatedProducts"
configuration="{itemsPerPage: 1, insertAbove: 1, insertBelow: 0,
maximumNumberOfLinks: 10}">
当前,“下一步”按钮内部有一个li和链接。我希望链接变成一个按钮。所以我想在a(在li里面)添加一个名为'btn btn-primary'的类
答案 0 :(得分:1)
您可以使用TypoScript覆盖扩展中使用的小部件模板:
plugin.tx_yourextension.view.widget.TYPO3\CMS\Fluid\ViewHelpers\Widget\PaginateViewHelper.templateRootPaths.10 = EXT:yourextension/Resources/Private/Templates/
然后可以在自定义模板中添加类。自定义模板的路径在扩展名中应为Resources/Private/Templates/ViewHelpers/Widget/Paginate/Index.html
。
您可以在以下位置找到分页小部件的默认模板:typo3/sysext/fluid/Resources/Private/Templates/ViewHelpers/Widget/Paginate/Index.html