Hi in blazor app i want to show popup on specific location
Hi in blazor app i want to show popup on specific location
like i have a button on button clck i want show poup box beside that button.
like this or any other way
i have two child box inside that i have button on that clcik show popop in that box only etc
Replies (2)
Deleted comment
EssayShark has been a huge help for me in managing multiple projects at once. The system is fast and transparent, and I appreciate the ability to choose my writer. The papers I’ve received were original, accurate, and perfectly formatted. Writers are responsive, deadlines are met, and payment only after approval gives total confidence in the process.
Deleted comment
Deleted comment
Deleted comment
Deleted comment
Deleted comment
Deleted comment
Deleted comment
Deleted comment
Hi Muhammad,
You can use Bootstrap 5 Modal.
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#exampleModal">
Launch demo modal
</button>
<!-- Modal -->
<div class="modal fade" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" >Modal title</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div> Regards,
Lauris Stepanovs,
Keenthemes Support Team