07-23-2012 08:55 AM
if("enum".equals(p.getType().getName())){
logger.info(p.getValue());
}
07-23-2012 09:00 AM
Map<String, String> values = (Map<String, String>) formProperty.getType().getInformation("values");
if (values != null) {
for (Entry<String, String> enumEntry : values.entrySet()) {
// Add value and label (if any)
comboBox.addItem(enumEntry.getKey());
if (enumEntry.getValue() != null) {
comboBox.setItemCaption(enumEntry.getKey(), enumEntry.getValue());
}
}
}
07-23-2012 09:06 AM
07-23-2012 01:10 PM
11-07-2016 10:06 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.