diff options
-rw-r--r-- | program/js/list.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/program/js/list.js b/program/js/list.js index 4ae6c0c66..6f54dd77c 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -91,8 +91,7 @@ init: function() var r, len, rows = this.tbody.childNodes; for (r=0, len=rows.length; r<len; r++) { - this.init_row(rows[r]); - this.rowcount++; + this.rowcount += this.init_row(rows[r]) ? 1 : 0; } this.init_header(); @@ -148,6 +147,8 @@ init_row: function(row) this.row_init(this.rows[uid]); // legacy support this.triggerEvent('initrow', this.rows[uid]); + + return true; } }, |