forked from extern/egroupware
Add a check for select_all action, and use it if there.
Fixes Ctrl+A only selected visible nextmatch rows.
This commit is contained in:
parent
b1040d48ae
commit
3b15036ce8
@ -1251,6 +1251,11 @@ egwActionObject.prototype.toggleAllSelected = function(_select)
|
||||
_select = !this.getAllSelected();
|
||||
}
|
||||
|
||||
// Check for a select_all action
|
||||
if(_select && this.manager && this.manager.getActionById('select_all'))
|
||||
{
|
||||
return this.manager.getActionById('select_all').execute(this);
|
||||
}
|
||||
this.setAllSelected(_select);
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user