summaryrefslogtreecommitdiff
path: root/program/js/list.js
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-04-05 13:36:38 +0200
committerAleksander Machniak <alec@alec.pl>2013-04-05 13:36:38 +0200
commitad827b911782d172da518303555786851f000322 (patch)
tree22256cc01827cd511db53b322a2e116eaf8aaa91 /program/js/list.js
parent4dfae96dcdfba93a8b03db2d0422766b20adf77d (diff)
Fix selecting collapsed rows on select-all (#1489036)
Diffstat (limited to 'program/js/list.js')
-rw-r--r--program/js/list.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/program/js/list.js b/program/js/list.js
index 8b4857d6d..5aa9331b0 100644
--- a/program/js/list.js
+++ b/program/js/list.js
@@ -829,7 +829,7 @@ select_all: function(filter)
for (n in this.rows) {
if (!filter || this.rows[n][filter] == true) {
this.last_selected = n;
- this.highlight_row(n, true);
+ this.highlight_row(n, true, true);
}
else {
$(this.rows[n].obj).removeClass('selected').removeClass('unfocused');
@@ -924,7 +924,7 @@ get_single_selection: function()
/**
* Highlight/unhighlight a row
*/
-highlight_row: function(id, multiple)
+highlight_row: function(id, multiple, norecur)
{
if (!this.rows[id])
return;
@@ -940,7 +940,7 @@ highlight_row: function(id, multiple)
if (!this.in_selection(id)) { // select row
this.selection.push(id);
$(this.rows[id].obj).addClass('selected');
- if (!this.rows[id].expanded)
+ if (!norecur && !this.rows[id].expanded)
this.highlight_children(id, true);
}
else { // unselect row
@@ -950,7 +950,7 @@ highlight_row: function(id, multiple)
this.selection = a_pre.concat(a_post);
$(this.rows[id].obj).removeClass('selected').removeClass('unfocused');
- if (!this.rows[id].expanded)
+ if (!norecur && !this.rows[id].expanded)
this.highlight_children(id, false);
}
}
@@ -968,7 +968,7 @@ highlight_children: function(id, status)
for (i=0; i<len; i++) {
selected = this.in_selection(children[i]);
if ((status && !selected) || (!status && selected))
- this.highlight_row(children[i], true);
+ this.highlight_row(children[i], true, true);
}
},