mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:29 +01:00
Resources - do not clear currently set calendar owners, add to what's selected
This commit is contained in:
parent
6cb27a7652
commit
c78edd7a1c
@ -77,8 +77,12 @@ app.classes.resources = AppJS.extend(
|
||||
|
||||
var show_calendar = function(res_ids) {
|
||||
egw_message(this.egw.lang('%1 resource(s) View calendar',res_ids.length));
|
||||
|
||||
this.egw.open_link('calendar.calendar_uiviews.index&view=planner&sortby=user&owner=0,r'+res_ids.join(',r')+'&ajax=true');
|
||||
var current_owners = (app.calendar ? app.calendar.state.owner || [] : []).join(',');
|
||||
if(current_owners)
|
||||
{
|
||||
current_owners += ',';
|
||||
}
|
||||
this.egw.open_link('calendar.calendar_uiviews.index&view=planner&sortby=user&owner='+current_owners+'r'+res_ids.join(',r')+'&ajax=true');
|
||||
};
|
||||
|
||||
if(selection && selection.all)
|
||||
|
Loading…
Reference in New Issue
Block a user