Minor Update
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-column-widget@111828 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
a4c8b4d719
commit
47103b7257
|
@ -983,13 +983,18 @@ public class ChangeColumnTypePanel extends FramedPanel implements
|
|||
.selectedAttributeElement(cd.getDataTypeName()));
|
||||
ColumnDataType columnDataType = ColumnDataType
|
||||
.getColumnDataTypeFromId(cd.getDataTypeName());
|
||||
ArrayList<ValueDataFormat> valueDataFormats = valueDataFormatMap
|
||||
.get(columnDataType);
|
||||
comboValueDataFormat.clear();
|
||||
comboValueDataFormat.reset();
|
||||
comboValueDataFormat.getStore().clear();
|
||||
comboValueDataFormat.getStore().addAll(valueDataFormats);
|
||||
comboValueDataFormat.redraw();
|
||||
if (columnDataType.compareTo(ColumnDataType.Text) == 0) {
|
||||
comboValueDataFormatLabel.setVisible(false);
|
||||
} else {
|
||||
comboValueDataFormatLabel.setVisible(true);
|
||||
ArrayList<ValueDataFormat> valueDataFormats = valueDataFormatMap
|
||||
.get(columnDataType);
|
||||
comboValueDataFormat.clear();
|
||||
comboValueDataFormat.reset();
|
||||
comboValueDataFormat.getStore().clear();
|
||||
comboValueDataFormat.getStore().addAll(valueDataFormats);
|
||||
comboValueDataFormat.redraw();
|
||||
}
|
||||
} else {
|
||||
if (type == ColumnTypeCode.CODENAME) {
|
||||
setLocale(cd.getLocale());
|
||||
|
|
Loading…
Reference in New Issue