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:
parent
73512dbbdb
commit
4f6f36e134
|
@ -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!");
|
||||
|
|
Loading…
Reference in New Issue