Hi all,
In my application, I have a blank IWRegion that I fill with a set of IWRadioButtons programmatically.
This is my code to create the buttons (I'm looping in a dataset to create several buttons).
![[Image: btn_creation_fsysym.jpg]]()
And here is my HTML Template, that contains only one region for the moment, with some Bootstrap classes to display my buttons as a list.
![[Image: template_yk1fgs.jpg]]()
When I open my form without any button created, everything is normal in my HTML source code.
![[Image: empty_region_dsf4fb.jpg]]()
But when I create my set of buttons, a dummy div is added inside my region to encapsulate my buttons.
![[Image: filled_region_gfh46x.jpg]]()
This dummy div breaks my render because the flex-direction assigned to my region is not applied to my buttons, and I'm looking for a way to avoid a CCS rule like
Any idea or explanation about how to avoid this dummy div ?
Many thanks for your help.
In my application, I have a blank IWRegion that I fill with a set of IWRadioButtons programmatically.
This is my code to create the buttons (I'm looping in a dataset to create several buttons).
![[Image: btn_creation_fsysym.jpg]](http://res.cloudinary.com/teka/image/upload/v1713960989/btn_creation_fsysym.jpg)
And here is my HTML Template, that contains only one region for the moment, with some Bootstrap classes to display my buttons as a list.
![[Image: template_yk1fgs.jpg]](http://res.cloudinary.com/teka/image/upload/v1713960989/template_yk1fgs.jpg)
When I open my form without any button created, everything is normal in my HTML source code.
![[Image: empty_region_dsf4fb.jpg]](http://res.cloudinary.com/teka/image/upload/v1713960989/empty_region_dsf4fb.jpg)
But when I create my set of buttons, a dummy div is added inside my region to encapsulate my buttons.
![[Image: filled_region_gfh46x.jpg]](http://res.cloudinary.com/teka/image/upload/v1713960989/filled_region_gfh46x.jpg)
This dummy div breaks my render because the flex-direction assigned to my region is not applied to my buttons, and I'm looking for a way to avoid a CCS rule like
Code:
#IWREGIONRELATIONSMGR_FRAMEADMINPANEL div {
display: flex;
flex-direction : column;
}
Any idea or explanation about how to avoid this dummy div ?
Many thanks for your help.