From 7b1cac69149c0abdbc51b135f11b0868d8e7cd5f Mon Sep 17 00:00:00 2001 From: Yogesh Jain Date: Tue, 19 May 2020 13:54:21 +0530 Subject: [PATCH] Fixed an issue where clicking on Select All button, not selecting all the options in pgAgent job scheduler. Fixes #5496 --- docs/en_US/release_notes_4_22.rst | 1 + .../servers/pgagent/schedules/static/js/pga_schedule.js | 3 +++ 2 files changed, 4 insertions(+) diff --git a/docs/en_US/release_notes_4_22.rst b/docs/en_US/release_notes_4_22.rst index 54cbda778..b2442742a 100644 --- a/docs/en_US/release_notes_4_22.rst +++ b/docs/en_US/release_notes_4_22.rst @@ -45,5 +45,6 @@ Bug fixes | `Issue #5473 `_ - Fixed post-login redirect location when running in server mode under a non-default root. | `Issue #5480 `_ - Fixed an issue where the background job creation failsĀ if there is only a version-specific python binary available in PATH. | `Issue #5487 `_ - Fixed an issue where if LDAP_SEARCH_BASE_DN is not set then, the value for LDAP_BASE_DN will be considered. +| `Issue #5496 `_ - Fixed an issue where clicking on Select All button, not selecting all the options in pgAgent job scheduler. | `Issue #5503 `_ - Clarify and correct the docs on enabling the pl/debugger plugin on the server. | `Issue #5510 `_ - Fixed Unicode decode errorĀ 'utf-8' codec can't decode byte. \ No newline at end of file diff --git a/web/pgadmin/browser/server_groups/servers/pgagent/schedules/static/js/pga_schedule.js b/web/pgadmin/browser/server_groups/servers/pgagent/schedules/static/js/pga_schedule.js index 44d3d4559..2addaad04 100644 --- a/web/pgadmin/browser/server_groups/servers/pgagent/schedules/static/js/pga_schedule.js +++ b/web/pgadmin/browser/server_groups/servers/pgagent/schedules/static/js/pga_schedule.js @@ -393,6 +393,7 @@ define('pgadmin.node.pga_schedule', [ allowClear: true, placeholder: gettext('Select the month days...'), width: 'style', + showOnScroll: false, dropdownAdapter: $.fn.select2.amd.require( 'select2/selectAllAdapter' ), @@ -427,6 +428,7 @@ define('pgadmin.node.pga_schedule', [ allowClear: true, placeholder: gettext('Select the hours...'), width: 'style', + showOnScroll: false, dropdownAdapter: $.fn.select2.amd.require( 'select2/selectAllAdapter' ), @@ -442,6 +444,7 @@ define('pgadmin.node.pga_schedule', [ allowClear: true, placeholder: gettext('Select the minutes...'), width: 'style', + showOnScroll: false, dropdownAdapter: $.fn.select2.amd.require( 'select2/selectAllAdapter' ),