final HtmlTable groupTable = new HtmlTable();
container.addChild(groupTable);
groupTable.setClasses(getTablesClasses());
groupTable.setStyle("width: " + (getInitialWidth() - depth) + "em; margin-left: " + depth + "em;");
final HtmlTableRow htmlTableRow = groupTable.createRow();
htmlTableRow.setClasses(getGroupRowClasses());
final HtmlTableCell nameCell = htmlTableRow.createCell();
nameCell.setBody(new HtmlText(curriculumGroup.getFullPath()));
nameCell.setClasses(getGroupNameClasses());
final HtmlTableCell radioButtonCell = htmlTableRow.createCell();
final HtmlRadioButton radioButton = radioButtonGroup.createRadioButton();
radioButton.setUserValue(MetaObjectFactory.createObject(curriculumGroup, new Schema(CurriculumGroup.class)).getKey()
.toString());
radioButton.setChecked(curriculumGroup == dismissalBean.getCurriculumGroup());
radioButtonCell.setBody(radioButton);