Fix update_row() for lists with checkbox selection

pull/5838/head
Aleksander Machniak 8 years ago
parent a928c3f988
commit 431b9d6b75

@ -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));
},
/**

Loading…
Cancel
Save