Let’s say I have:
- A model with a field
body, and I set this to a modular block (single) in frameless mode, accepting only thebody_textblock. - The
body_textblock has fieldstextandstyle.
When I retrieve the value of the body field, I will get something like body.body_text.text and body.body_text.style. In other words I need to remember that I set up the body field as a frameless block, and I need to remember to access its sub-fields through the body_text key.
It would be useful to have a switch in frameless mode also to promote the sub-fields of the block to be keys on the parent field, so I can do body.text and body.style to access the sub-fields of the block.
I find this more intuitive, and it would allow me to more freely nest blocks in frameless mode without closely keeping track of where I’ve done that.
