You can also place panels inside columns of multi-column-layouts. Therefore you will need the (unique) name of the group.
1 2 3 4 5 6 7 8 91011121314151617
// file: hooks/patients-dv.jsvardv=AppGiniHelper.DV;//...// add group named "grp_history" dv.addGroup("grp_history","History",["surgical_history","obstetric_history"]);// add group named "grp_more"dv.addGroup("grp_more","More",["genetic_diseases","other_details"]);// multi-column layoutvarrow_2=newAppGiniLayout([8,4]);row_2.add(1,["#Anamnesis","tobacco_usage","alcohol_intake","history"]);// add both groups (identified by their names) to the column #1row_2.add(1,["#More","grp_history","grp_more"]);// ...