Hi Bishan,
Thanks for contacting us.
We have validated the reported issue in our end. It occurs due to the bootstrap modal enforcing the focus, when an element which is not a child of bootstrap modal gets focused. Kindly refer to the following online blogs for further reference.
This issue can be resolved this issue by unbinding the focusin modal event in show modal event as per the suggestion given in the above blogs.
<script type="text/javascript">
$(function () {
$('#modalMSDDL').on('shown.bs.modal', function () {
$(document).off('focusin.modal');
});
})
</script> |
Please find the modified sample in the following link
Please let us know if you need any further assistance on this.
Regards,
Saranya D