Fixed column exclude

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-csv-import-widget@93980 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-04-01 12:31:31 +00:00
parent f25264e2a1
commit c2924d038b
1 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ public class CSVGridView extends GridView<CSVRow> {
public void onSelection(SelectionEvent<Item> event) {
excludedColumns.remove(new Integer(colIndex));
refresh(false);
//refresh(false);
}
});
@ -70,7 +70,7 @@ public class CSVGridView extends GridView<CSVRow> {
public void onSelection(SelectionEvent<Item> event) {
excludedColumns.add(colIndex);
refresh(false);
//refresh(false);
}
});