10-19-2023, 02:32 PM
Fun facts with my problem.
I'm using HTML template to draw my pages.
To draw this page as expected, I'm using this html code :
This code returns this page, same than in my 1st post :
![[Image: lmff50qskcnedqcrw54x.jpg]](https://res.cloudinary.com/teka/image/upload/v1697725001/lmff50qskcnedqcrw54x.jpg)
If I swap my grid and my region in the HMTL code :
I get this page, every new frame is added after 2nd frame instead of 4th frame :
![[Image: r1a62nmeg2ojswoigfvw.jpg]](https://res.cloudinary.com/teka/image/upload/v1697725001/r1a62nmeg2ojswoigfvw.jpg)
And finally, if I remove my grid from the HTML code :
I get this page :
![[Image: t2hzazcnfubucx5r1opk.jpg]](https://res.cloudinary.com/teka/image/upload/v1697725001/t2hzazcnfubucx5r1opk.jpg)
This result is OK, frames are in the correct order.
But, even if the grid is not added to my HTML template, the grid is drawn at the end of the page.
![[Image: l9ykjgg13zjzotvaha3s.jpg]](https://res.cloudinary.com/teka/image/upload/v1697725001/l9ykjgg13zjzotvaha3s.jpg)
I don't understand why my region is impacted by the presence and the position of the grid on the page.
Any idea ?
I'm using HTML template to draw my pages.
To draw this page as expected, I'm using this html code :
Code:
<div class="mb-4">
{%IWLabelGroupTitle class="h4 mb-4"%}
{%IWGridAnswers%}
</div>
<div>
{%IWRegionQuestions class="d-flex flex-column mb-4"%}
</div>
![[Image: lmff50qskcnedqcrw54x.jpg]](https://res.cloudinary.com/teka/image/upload/v1697725001/lmff50qskcnedqcrw54x.jpg)
If I swap my grid and my region in the HMTL code :
Code:
<div class="mb-4">
{%IWLabelGroupTitle class="h4 mb-4"%}
{%IWRegionQuestions class="d-flex flex-column mb-4"%}
</div>
<div>
{%IWGridAnswers%}
</div>
![[Image: r1a62nmeg2ojswoigfvw.jpg]](https://res.cloudinary.com/teka/image/upload/v1697725001/r1a62nmeg2ojswoigfvw.jpg)
And finally, if I remove my grid from the HTML code :
Code:
<div class="mb-4">
{%IWLabelGroupTitle class="h4 mb-4"%}
</div>
<div>
{%IWRegionQuestions class="d-flex flex-column mb-4"%}
</div>
![[Image: t2hzazcnfubucx5r1opk.jpg]](https://res.cloudinary.com/teka/image/upload/v1697725001/t2hzazcnfubucx5r1opk.jpg)
This result is OK, frames are in the correct order.
But, even if the grid is not added to my HTML template, the grid is drawn at the end of the page.
![[Image: l9ykjgg13zjzotvaha3s.jpg]](https://res.cloudinary.com/teka/image/upload/v1697725001/l9ykjgg13zjzotvaha3s.jpg)
I don't understand why my region is impacted by the presence and the position of the grid on the page.
Any idea ?