Closed rocchidavide closed 9 years ago
You can already do that by adding a group field as the first field in a list. E.g.:
'my_group' => array(
'inputType' => 'group',
'label' => array('My Group', ''),
),
What I mean is that:
'members' => array(
'label' => array('Feature boxes', ''),
'inputType' => 'list',
'elementLabel' => 'Feature box %s',
'fields' => array(...)
I mean:
'members' => array(
'label' => array('Feature boxes', ''),
'inputType' => 'list',
'elementLabel' => 'Feature box %s',
'fields' => array(
'my_group' => array(
'inputType' => 'group',
'label' => array('My Group', ''),
),
...
),
),
Sorry ausi, I'm also using group inside my member field. What i suggest is something like that:
With groups it would look like this:
I have more than one group inside my member field, but they are all uncollapsed
But you can collapse them by clicking on the group label. Adding another level that is collapsible seems too much to me.
Ok :) Thank you!
How about make list items collapsable? When I have many of those each of which has many fields, it's difficult to scroll and read them.
Thank you!