hcan we dismiss reactstrap alert on clicking outside of alert code example
Example 1: To focus on the textbox when bootstrap pop-up is open
$("#dialog-cancelReasonModal").on('shown.bs.modal', function () {
$(this).find('#txtName').focus();
});
• ID of the bootstrap POP-UP = dialog-cancelReasonModal
• ID of the TextBox = 'txtName'
Example 2: how to stop user from clicking outside alert box js
allowOutsideClick: false