FormFieldList fld = new FormFieldList(cfg.dbTableColumn(), cfg.label());
fld.setList(getWorkspace().getProperties().getDataProperties().getDataList(cfg.list()));
fld.setValue(method.invoke(data));
group.addField(fld);
}
else if (cfg.fieldClass() == FormFieldBoolean.class)
{
FormFieldBoolean fld = new FormFieldBoolean(cfg.dbTableColumn(), cfg.label());
fld.setValue(method.invoke(data));
group.addField(fld);
}