I have another bug to report.. Due to a large volume of code for my Mosaic I had to split into snippets the definitions of my editables within a tile. It appears, that
order in editables from embedded snippets is respected, while the
order of the other editables residing directly within tile's definition is set upon their physical appearance (with parameter 'order'
ignored).
To illustrate, I created a simplest mosaic with one tile:
- Code: Select all
<cms:mosaic name='my_test'>
<cms:tile name='first' label='First'>
<cms:editable name='one' type='text' order='10'/>
<cms:embed 'two.html' />
<cms:editable name='tre' type='text' order='20' />
</cms:tile>
</cms:mosaic>
Snippet 'two.html' has this editable -
- Code: Select all
<cms:editable name='two' type='text' order='15' />
- Wrong order of embedded editable
- 2019-03-29-133546.png (3.03 KiB) Viewed 10620 times
The result is a messed order.
@KK, please fix this! I am forced now to embed full content of my tile..