I want to change view mode only for first two rows in a view like this:
- tile-big
- tile-big
- tile
- tile
so I configured it this way:

This prints results:
- tile-big
- tile
- tile
- tile
when I changed start to 1 it will print:
- tile
- tile-big
- tile
- tile
It does not mattes what value is in End field.
Also I tried to reverse config:

This will be printed:
- tile-big
- tile-big
- tile
- tile-big
| Comment | File | Size | Author |
|---|---|---|---|
| #4 | views_parity_row-3038374-4.patch | 674 bytes | lamp5 |
| Snímek obrazovky 2019-03-07 v 18.58.33.png | 41.11 KB | honza pobořil | |
| Snímek obrazovky 2019-03-07 v 18.56.25.png | 42.94 KB | honza pobořil |
Comments
Comment #2
honza pobořil commentedComment #3
honza pobořil commentedI read source code and now I see it was misunderstanding.
I configured it to:
Frequency: 1
Start: 0
End: 1
And it works for me.
So consider it as and usability bug. :-)
Comment #4
lamp5Heh, it's very interesting. I can confirm that example from @Bobik displays the first 2 rows with the same display mode. It is not possible to display only the first row with different display mode.
Comment #6
polThanks !