Full_Width_Row Inheritance

Hello,

I’ve read a lot of posts about people having issues with full_width_rows (myself included) not displaying full_width_rows when they set their content panels via

self.content_panel.clear()
self.content_panel.add_component(my_form1())

The issue here is that under add_component, full_width_rows option is defaulted to False which means that my_form1 will not have full_width_rows even if the users specify full_width_rows in the options of the containers in that form. This is confusing as add_component should inherit the options specified in my_form1 and not use a default that the user is not aware about. This was my assumption and I don’t think I’ll be the only one with this issue.

4 Likes