panel.addRow(nameField.getLabel(), nameField.getInputComponent());
KongaButton descriptionButton = new KongaButton(descriptionAction);
descriptionAction.setTrigger(descriptionButton);
panel.addRow(null, InvisiblePanel.newPanel(descriptionButton));
panel.setAnchor(Anchor.NORTHWEST).setRightFill(Fill.BOTH).setRightWeights(1.0, 1.0);
panel.addRow(new JLabel("Members"), BorderLayoutBuilder.fillWith(memberList));
panel.setRightFill(Fill.NONE).setRightWeights(0.0, 0.0);
BoxBuilder buttons = BoxBuilder.horizontal();
buttons.setUseSmallSizedIconsForActions(true);
buttons.addAllWithSpace(10, addMemberAction, removeMemberAction);
panel.addRow(null, InvisiblePanel.newPanel(buttons));