mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 00:29:38 +01:00
* Calendar/Resources: do NOT unselect currently selected calendars when selecting a resource category, eg. to choose a meeting room
This commit is contained in:
parent
1c52c64ba2
commit
11e6879aac
@ -794,7 +794,7 @@ class calendar_ui
|
||||
$file[] = array(
|
||||
'text' => "
|
||||
<script type=\"text/javascript\">
|
||||
function load_cal(url,id) {
|
||||
function load_cal(url,id,no_reset) {
|
||||
var owner='';
|
||||
var i = 0;
|
||||
selectBox = document.getElementById(id);
|
||||
@ -804,7 +804,8 @@ function load_cal(url,id) {
|
||||
}
|
||||
}
|
||||
if (owner) {
|
||||
egw_appWindow('calendar').location=url+'&owner=0,'+owner;
|
||||
if (typeof no_reset == 'unknown') no_reset = false;
|
||||
egw_appWindow('calendar').location=url+'&owner='+(no_reset?'':'0,')+owner;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
@ -729,7 +729,7 @@ class resources_ui
|
||||
array_merge($resources,$res_cats),
|
||||
$no_lang=true,
|
||||
$options='style="width: 100%;" onchange="load_cal(\''.
|
||||
egw::link('/index.php',$param,false).'\',\'uical_select_resource\');" id="uical_select_resource"',
|
||||
egw::link('/index.php',$param,false).'\',\'uical_select_resource\',true);" id="uical_select_resource"',
|
||||
$multiple=count($selected) ? 4 : 0
|
||||
);
|
||||
return array(
|
||||
|
Loading…
Reference in New Issue
Block a user