Replies: 1 comment
-
@arcdotnet Thank you for trying BlazorBootstrap components. Please share a sample GitHub repo to reproduce the issue. Also, share the below details:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I tried to use the Blazor Bootstrap's Modal, but there is a problem when putting NavigateTo on the button inside the modal, it will show the next page, but the vertical scroll is missing.
`<Modal @ref="modal" Title="Modal title">
Modal body text goes here.
<Button Color="ButtonColor.Secondary" @OnClick="OnHideModalClick">Close
Save changes
<Button Color="ButtonColor.Primary" @OnClick="GoToNextPage">Show Modal
@code {
private Modal modal = default!;
}`
I hope you can help me on this.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions