Actions
Bug #90003
closedFluid Widget f:paginate doesn't render GET/POST variables after Update to 10.2
Status:
Rejected
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2019-12-22
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
10
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
I am using the Fluid Widget in a backend module (slug Extension, see TER) as follows:
<f:widget.paginate objects="{pages}" as="pagesPaginated" configuration="{addQueryStringMethod: 'POST,GET', itemsPerPage: filter.maxentries, insertAbove: 1, maximumNumberOfLinks: 10}">
Other code here...
</f:widget.paginate >
Full code here: https://github.com/koehlersimon/slug/blob/master/Resources/Private/Templates/List.html
This works fine up to TYPO3 9.5.11.
When I use the code in version 10.2.0, the pagination widget works, but without recognizing the parameters of my search filter form anymore.
In TYPO3 9.5.11 the code works as expected.
Updated by Bastian Bringenberg almost 5 years ago
- Project changed from 9 to TYPO3 Core
- Category deleted (
Development) - TYPO3 Version set to 10
Moved to right Project
Updated by Simon Köhler almost 5 years ago
Okay, now I found this, saying: GET,POST or POST,GET is not supported anymore since TYPO3 v10.0
As far as I can see, only GET parameters are accepted now.
Actions