From 431b9d6b75abd93316a52d954115d26c8e1641cb Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Wed, 15 Mar 2017 15:52:39 +0100 Subject: [PATCH] Fix update_row() for lists with checkbox selection --- program/js/list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program/js/list.js b/program/js/list.js index a52cc9ed6..9cce7cc66 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -944,7 +944,7 @@ col_tagname: function() get_cell: function(row, index) { - return $(this.col_tagname(), row).eq(index); + return $(this.col_tagname(), row).eq(index + (this.checkbox_selection ? 1 : 0)); }, /**