Minor Update
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-csv-import-widget@93988 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
c2924d038b
commit
39ed921b66
|
@ -114,11 +114,12 @@ public class CSVGrid extends Grid<CSVRow> {
|
|||
int limit=getColumnModel().getColumnCount();
|
||||
ArrayList<Boolean> columnMask= new ArrayList<Boolean>();
|
||||
ArrayList<Integer> excluded = gridViewSample.getExcludedColumns();
|
||||
for (int i = 0; i<limit; i++) {
|
||||
for (int i = 1; i<limit; i++) {
|
||||
//columnMask[i] = !excluded.contains(i);
|
||||
Boolean b=!excluded.contains(i);
|
||||
columnMask.add(b);
|
||||
}
|
||||
Log.debug("Column Mask: "+columnMask);
|
||||
return columnMask;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue