Focus Trap
Blazored Modal comes with a built-in focus trap. Focus traps are an important feature for accessability as they stop focus dropping behind the modal when pressing the tab key.
If you do wish to disable this feature, you can do so using the ActivateFocusTrap
option and set it to false
.
Configuring for all modals
<CascadingBlazoredModal ActivateFocusTrap="false" />
Configuring for a single modal
var options = new ModalOptions()
{
ActivateFocusTrap = false
};
Modal.Show<Confirm>("Are you sure?", options);