mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-23 23:29:31 +01:00
Merged r35884 from trunk
This commit is contained in:
parent
36093fbd2a
commit
c0fe61e4f4
@ -148,9 +148,15 @@ egwGridDataElement.prototype.set_group = function(_value)
|
||||
this.group = _value;
|
||||
|
||||
var root = this.getRootElement();
|
||||
if (typeof root.actionLinkGroups[_value] != "undefined")
|
||||
|
||||
var groups = _value.split(",");
|
||||
for (var key in groups)
|
||||
{
|
||||
this.actionObject.updateActionLinks(root.actionLinkGroups[_value]);
|
||||
var val = groups[key];
|
||||
if (typeof root.actionLinkGroups[val] != "undefined")
|
||||
{
|
||||
this.actionObject.updateActionLinks(root.actionLinkGroups[val]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user