Hi,
1)
I have the problem, that I have some field groups with about 10 fields in it. By adding for example 5 groups, editing of this is difficult, because you have to scroll down very long and have to search the right entry.
A solution is, to have an accordion.
Is there an easy way to have the first field of a field group as the accordion title and the rest as the accordion content? With standard editing view with div?
2)
My current solution is to add html in the group field edit view as for example (Uikit, also with bootstrap possible)
Code:
<ul uk-accordion><li>
<a class="uk-accordion-title" href="#">
[cb_field]</a>
<div class="uk-accordion-content">
[title_cb_field][field_cb_field]
and so on
</div>
</li>
</ul>
But if I add a new field group, the content of [cb_field] is the same of the field group before. So this I cannot use.
Thanks, best regards
Eric