How to add two groupconfigs in an AttributePanelConfig side by side?
We set two GroupConfigs in an AttributePanelConfig as below:
ComponentConfigFactory factory = getComponentConfigFactory();
AttributePanelConfig attrPanelConfig = factory.newAttributePanelConfig();
ResourceBundle bundle = ResourceBundle.getBundle(bundleBasename, locale);
// First group list layout
GroupConfig groupConfig = factory.newGroupConfig("documentFilterGroup", bundle.getString(createSendJobForTFE.FILTER_DOCUMENTS), 3);
...
attrPanelConfig.addComponent(groupConfig);
//Second group list layout
GroupConfig groupConfig2 = factory.newGroupConfig("documentFilterGroup", bundle.getString(createSendJobForTFE_SELECT_DOCUMENTS), 3);
..
attrPanelConfig.addComponent(groupConfig2);
Once these are set, the layouts are seen one below the another. How can I set the layouts (groupConfig and groupConfig2) side by side in the same line?
Thanks

