Minor Updated

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-expression-widget@91849 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-02-18 14:48:19 +00:00
parent 73512dbbdb
commit 4f6f36e134
1 changed files with 7 additions and 3 deletions

View File

@ -80,9 +80,13 @@ public class ColumnFilterDialog extends Window {
|| column.getTypeCode().compareTo(
ColumnTypeCode.MEASURE.toString()) == 0) {
columnExpressionPanel = new ColumnExpressionPanel(this, column);
columnExpressionPanel.getBtnSave().setVisible(false);
columnExpressionPanel.getBtnSearch().setVisible(false);
add(columnExpressionPanel);
add(columnExpressionPanel);
if(columnExpressionPanel.getBtnSave()!=null){
columnExpressionPanel.getBtnSave().setVisible(false);
}
if(columnExpressionPanel.getBtnSearch()!=null){
columnExpressionPanel.getBtnSearch().setVisible(false);
}
} else {
HTML errorMessage = new HTML(
"This type of column is not supported for now!");