Fix #14502 - Triggered the on-change event on the input field to uncheck the "ignore" checkbox

Signed-off-by: Hannah Okwelum <honyinye3@gmail.com>
This commit is contained in:
Hannah Okwelum 2021-08-17 16:19:14 +01:00 committed by William Desportes
parent ecb93d752b
commit 9fdd6afea4
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889

View File

@ -937,6 +937,9 @@ Sql.browseForeignDialog = function ($thisA) {
}
// Set selected value as input value
$input.val($(this).data('key'));
// Unchecks the Ignore checkbox for the current row
$input.trigger('change');
$dialog.dialog('close');
});
$(formId).on('click', showAllId, function () {