Actions
Bug #77932
closedFluidStyledContent - ListViewHelper ignores order of given array
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
-
Target version:
-
Start date:
2016-09-13
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
I expect the 'FluidStyledContent - ListViewHelper' to return the pages in the order passed in in the parameter array.
example:
<ce:menu.list pageUids="{0: 15, 1: 10, 2: 12}" as="pages">
<f:for each="{pages}" as="page">
<f:debug>{page.uid}</f:debug>
</f:for>
</ce:menu.list>
output:
10
12
15
expectation:
15
10
12
In my opinion this should be the default behaviour. or there should be another parameter for the viewhelper: 'sortingBy'
Thanks in advance.
Actions