Commit 58ca930f authored by iSergio's avatar iSergio
Browse files

Fixed TypeError: fromComponent.lastFocused is undefined

parent abb35094
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2362,7 +2362,7 @@ Ext.define('Ext.view.Table', {
            }
            // Tabbing in from the neighbouring TableView (eg, locking).
            // Go to column zero, same record
            else if (fromComponent.isTableView) {
            else if (fromComponent.isTableView && fromComponent.lastFocused !== undefined) {
                focusPosition = new Ext.grid.CellContext(me).setPosition(fromComponent.lastFocused.record, 0);
            }
        }