Cannot Insert a Row into a Repeat Region

App Structure will not let me insert a row into a repeat region.

Can anyone tell me what structure I am expected to create within a repeat instead of a row/column?

Are you using a repeat or repeat-children?
How did you add it - using the dynamic attributes / make repeat children or some other way? What element is the repeat properties applied to - container, row, column?

It is a plain, simple repeat, added with the menu system:

<div dmx-repeat:rg_messages_found="search_messages.data.messages">

Maybe a better way to ask the question is this:

In what elements can I place a repeat such that I can then place a row and column inside the repeat?

Or is life easier if I just create the row and then make it a repeat-children?

It all depends if you want to repeat the row or the elements inside it ... but yes, usually you first add the static layout and then apply to it the repeat properties.

So if you add repeat-children to the row, it will repeat the columns inside. If you add repeat to it, then it will repeat the row itself.

Okay, thank you @Teodor… I’ve created all my repeats by adding a repeat element so far so I’ll try this method now…