Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-widgetx@93576 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-03-26 14:21:12 +00:00 committed by Giancarlo Panichi
parent f4f99ddf82
commit b729105096
1 changed files with 2 additions and 0 deletions

View File

@ -111,6 +111,8 @@ public class GridAndCellSelectionModel<M> extends GridSelectionModel<M> {
cellSelected=new CellSelection<M>(sel, rowIndex,colIndex); cellSelected=new CellSelection<M>(sel, rowIndex,colIndex);
return; return;
} }
M sel=listStore.get(rowIndex);
cellSelected=new CellSelection<M>(sel, rowIndex,colIndex);
grid.getView().focusCell(rowIndex, colIndex, false); grid.getView().focusCell(rowIndex, colIndex, false);
select(rowIndex, false); select(rowIndex, false);
} else { } else {