mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 08:25:03 +02:00
Respect no_actions flag in controller_selection when selecting a range / all
This commit is contained in:
@ -565,8 +565,11 @@ var et2_dataview_selectionManager = (function(){ "use strict"; return Class.exte
|
||||
naStart = false;
|
||||
}
|
||||
|
||||
// Select the element
|
||||
this.setSelected(this._indexMap[i].uid, true);
|
||||
// Select the element, unless flagged for exclusion
|
||||
if(!this._indexMap[i].no_actions)
|
||||
{
|
||||
this.setSelected(this._indexMap[i].uid, true);
|
||||
}
|
||||
}
|
||||
else if(i >= range_break)
|
||||
{
|
||||
|
Reference in New Issue
Block a user