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