Skip to content

Commit

Permalink
Calendar: Fix select_ajax to search classes - refs BT#20637
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelFQC committed Apr 10, 2023
1 parent e58b2ac commit 7829278
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main/calendar/agenda_js.php
Expand Up @@ -301,7 +301,7 @@
&& api_get_configuration_value('agenda_event_subscriptions') && 'personal' === $agenda->type
) {
$form->addHeader(get_lang('Subscriptions'));
$form->addHtml('<div id="form_subscriptions_container">');
$form->addHtml('<div id="form_subscriptions_container" style="position: relative;">');
$form->addSelect(
'subscription_visibility',
get_lang('AllowSubscriptions'),
Expand All @@ -321,6 +321,7 @@
[
'url' => api_get_path(WEB_AJAX_PATH).'usergroup.ajax.php?a=get_class_by_keyword',
'disabled' => 'disabled',
'dropdownParent' => '#form_subscriptions_container',
]
);
$form->addNumeric(
Expand Down

0 comments on commit 7829278

Please sign in to comment.