Forum for discussing general topics related to Couch.
6 posts Page 1 of 1
Hi,

I have a repeatable area with 10 rows, is it possible to minimise this in admin as it takes up a lot of real estate

Thanks
Hi,

You may define the repeatable region within a type 'group' region which has its 'collapsed' param set to '1'.
This will cause the entire repeatable region to show up in a collapsed state that can be expanded as and when required.

Hope this helps.
It almost helps :)

Have you got an example of using the collapesed parameter? I can't seem to find one anywhere

My existing repeatable code looks like this

Code: Select all
 <cms:repeatable type='group' collapsed='1'name="why_choose_us" label="Why Choose Us" order='5' > 
    <cms:editable group='why_choose_us' name="why_choose_us_title" label="Title" type="text"/>
    <cms:editable group='why_choose_us' name="why_choose_us_content" label="Content" type="richtext"/>
    <cms:editable group='why_choose_us' name="why_choose_us_image" label="Icon 36 x 37px" type="image" show_preview='1' width='36' height='37'/>
</cms:repeatable>
Please try modifying your code to this -
Code: Select all
<cms:editable type='group' name='group_why_choose_us' label='Why Choose Us' collapsed='1' order='5'>
    <cms:repeatable name="why_choose_us" label="&nbsp;" >
        <cms:editable group='why_choose_us' name="why_choose_us_title" label="Title" type="text"/>
        <cms:editable group='why_choose_us' name="why_choose_us_content" label="Content" type="richtext"/>
        <cms:editable group='why_choose_us' name="why_choose_us_image" label="Icon 36 x 37px" type="image" show_preview='1' width='36' height='37'/>
    </cms:repeatable>
</cms:editable>

As you can see, the 'group' is a separate type of region that serves to envelope all regions that are defined within it - in our case we are defining only the repeatable region as its child.

It shows up in collapsed state as this -
Screenshot from 2025-06-05 12-25-10.png
Screenshot from 2025-06-05 12-25-10.png (4.03 KiB) Viewed 2186 times

And as follows when expanded -
Screenshot from 2025-06-05 12-25-31.png
Screenshot from 2025-06-05 12-25-31.png (32.92 KiB) Viewed 2186 times


Hope this helps.
Perfect
Thanks KK
You are welcome :)
6 posts Page 1 of 1