ButtonGroup radioGroup = new ButtonGroup();
Column colMain = new Column();
Row row1 = new Row();
row1.setAlignment(Alignment.ALIGN_TOP);
rbNoDate = new JbsRadioButton();
rbNoDate.setText(JbsL10N.getString("FmSelectDate.noDate"));
rbNoDate.setGroup(radioGroup);
row1.add(rbNoDate);
colMain.add(row1);
Row row2 = new Row();
row2.setAlignment(Alignment.ALIGN_TOP);
rbDate = new JbsRadioButton();
rbDate.setText(JbsL10N.getString("FmSelectDate.selectDate") + ":");
rbDate.setGroup(radioGroup);
row2.add(rbDate);
colMain.add(row2);
//Row row3 = new Row();