Skip to content

Commit

Permalink
Properly update page out/in for selected cells as well
Browse files Browse the repository at this point in the history
  • Loading branch information
kriszyp committed Nov 21, 2011
1 parent d58d47a commit 9ff3151
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CellSelection.js
Expand Up @@ -37,7 +37,7 @@ return declare([Selection], {
}
var element = cell.element,
notPrevented = true;
if(previous != value &&
if(previous == value ||
(!element || (notPrevented = listen.emit(element, "dgrid-" + (value ? "select" : "deselect"), {
cancelable: true,
bubbles: true,
Expand Down

0 comments on commit 9ff3151

Please sign in to comment.