Skip to content

Commit

Permalink
Bug fix in formatter:"actions" to support frozen columns
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegKi committed Jul 1, 2018
1 parent 0ca9988 commit 0d5ca4e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions js/jquery.fmatter.js
Expand Up @@ -925,6 +925,9 @@
row = rows[iRow];
if ($(row).hasClass("jqgrow")) {
bindEvents(row.cells[iCol], cm.autoResizable);
if (fbRows != null && fbRows[iRow] != null) {
bindEvents(fbRows[iRow].cells[iCol], cm.autoResizable);
}
}
}
};
Expand Down

0 comments on commit 0d5ca4e

Please sign in to comment.