summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <teemusa@vaadin.com>2015-08-28 14:26:48 +0300
committerVaadin Code Review <review@vaadin.com>2015-09-21 08:56:03 +0000
commit8f9538dffa369cf12342feeaca0752d20c35baf2 (patch)
tree4c092c426576a6fc64e3a59e3c765f446ee5ae31 /client
parent6a63de6275d356ee09fac162122cc850a65aa964 (diff)
downloadvaadin-framework-8f9538dffa369cf12342feeaca0752d20c35baf2.tar.gz
vaadin-framework-8f9538dffa369cf12342feeaca0752d20c35baf2.zip
Clean up unneeded logging and focusCell method in Grid
Change-Id: Iaf2848e3873d87a8db3a694cd542a34dc669ec74
Diffstat (limited to 'client')
-rw-r--r--client/src/com/vaadin/client/widgets/Grid.java56
1 files changed, 18 insertions, 38 deletions
diff --git a/client/src/com/vaadin/client/widgets/Grid.java b/client/src/com/vaadin/client/widgets/Grid.java
index 0cdd911883..5dc8583423 100644
--- a/client/src/com/vaadin/client/widgets/Grid.java
+++ b/client/src/com/vaadin/client/widgets/Grid.java
@@ -1329,11 +1329,6 @@ public class Grid<T> extends ResizeComposite implements
public void onError(EditorRequest<T> request) {
if (state == State.SAVING) {
cleanup();
-
- // TODO probably not the most correct thing to do...
- getLogger().warning(
- "An error occurred when trying to save the "
- + "modified row");
}
}
@@ -1379,11 +1374,6 @@ public class Grid<T> extends ResizeComposite implements
// TODO: Maybe restore focus?
}
bindTimeout.cancel();
-
- // TODO show something in the DOM as well?
- getLogger().warning(
- "An error occurred while trying to show the "
- + "Grid editor");
}
}
};
@@ -1529,8 +1519,10 @@ public class Grid<T> extends ResizeComposite implements
updateHorizontalScrollPosition();
// Update Grid internal focus and focus widget if possible
- grid.focusCell(rowIndex, focusedColumnIndex);
- focusColumn(focusedColumnIndex);
+ if (focusedColumnIndex >= 0) {
+ grid.focusCell(rowIndex, focusedColumnIndex);
+ focusColumn(focusedColumnIndex);
+ }
// No need to request anything from the editor handler.
return;
@@ -1961,10 +1953,6 @@ public class Grid<T> extends ResizeComposite implements
hScrollHandler.removeHandler();
clearEditorColumnErrors();
-
- if (focusedColumnIndex != -1) {
- grid.focusCell(rowIndex, focusedColumnIndex);
- }
}
private void updateBufferedStyleName() {
@@ -5804,32 +5792,27 @@ public class Grid<T> extends ResizeComposite implements
}
/**
- * Try to focus a cell by row and column index. Purely internal method.
+ * Focus a body cell by row and column index.
*
* @param rowIndex
- * row index from Editor
+ * index of row to focus
* @param columnIndex
- * column index from Editor
+ * index of cell to focus
*/
void focusCell(int rowIndex, int columnIndex) {
- RowReference<T> row = new RowReference<T>(this);
- Range visibleRows = escalator.getVisibleRowRange();
+ final Range rowRange = Range.between(0, dataSource.size());
+ final Range columnRange = Range.between(0, getVisibleColumns().size());
- TableRowElement rowElement;
- if (visibleRows.contains(rowIndex)) {
- rowElement = escalator.getBody().getRowElement(rowIndex);
- } else {
- getLogger().warning("Row index was not among visible row range");
- return;
- }
- row.set(rowIndex, dataSource.getRow(rowIndex), rowElement);
+ assert rowRange.contains(rowIndex) : "Illegal row index. Should be in range "
+ + rowRange;
+ assert columnRange.contains(columnIndex) : "Illegal column index. Should be in range "
+ + columnRange;
- CellReference<T> cell = new CellReference<T>(row);
- cell.set(columnIndex, columnIndex, getVisibleColumn(columnIndex));
-
- cellFocusHandler.setCellFocus(cell);
-
- WidgetUtil.focus(getElement());
+ if (rowRange.contains(rowIndex) && columnRange.contains(columnIndex)) {
+ cellFocusHandler.setCellFocus(rowIndex, columnIndex,
+ escalator.getBody());
+ WidgetUtil.focus(getElement());
+ }
}
/**
@@ -6876,8 +6859,6 @@ public class Grid<T> extends ResizeComposite implements
int colIndex = editor.getElementColumn(e);
if (colIndex < 0) {
- getLogger().warning(
- "Did not find a suitable column index.");
// Click in editor, but not for any column.
return;
}
@@ -6888,7 +6869,6 @@ public class Grid<T> extends ResizeComposite implements
cell = new Cell(rowIndex, colIndex, cellElement);
} else {
- getLogger().warning("Click is lost.");
// Click in a place that does not have a column.
return;
}