Skip to content

Commit

Permalink
Fixed Issue #42 - incorrect css selector in 'updateCell'
Browse files Browse the repository at this point in the history
  • Loading branch information
mleibman committed May 10, 2010
1 parent e3fe09e commit 1488712
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slick.grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -1161,7 +1161,7 @@ if (!jQuery.fn.drag) {

function updateCell(row,cell) {
if (!rowsCache[row]) { return; }
var $cell = $(rowsCache[row]).find(".c[cell=" + cell + "]");
var $cell = $(rowsCache[row]).find(".slick-cell[cell=" + cell + "]");
if ($cell.length === 0) { return; }

var m = columns[cell], d = gridDataGetItem(row);
Expand Down

0 comments on commit 1488712

Please sign in to comment.