//
VelocityContainer tmp = createVelocityContainer("tab_bgGrpMngmnt");
// Member Display Form, allows to enable/disable that others partips see
// partips and/or owners
//
BusinessGroupPropertyManager bgpm = new BusinessGroupPropertyManager(currBusinessGroup);
// configure the form with checkboxes for owners and/or partips according
// the booleans
dmsForm = new DisplayMemberSwitchForm("dmsForm", getTranslator(), hasOwners, hasPartips, hasWaitingList);
// set if the checkboxes are checked or not.
if (hasOwners) dmsForm.setShowOwnersChecked(bgpm.showOwners());
if (hasPartips) dmsForm.setShowPartipsChecked(bgpm.showPartips());
if (hasWaitingList) dmsForm.setShowWaitingListChecked(bgpm.showWaitingList());
bgpm = null;
dmsForm.addListener(this);
tmp.put("displayMembers", dmsForm);
boolean enableTablePreferences = flags.isEnabled(BGConfigFlags.ADMIN_SEE_ALL_USER_DATA);