Html number input handling in blazor
I am facing issue in handling max with manual input. My implimentation works like , when input value is already equal to max like 13 equal to 13 and i enter more value it becomes i.e 136. i trying its…
I am facing issue in handling max with manual input. My implimentation works like , when input value is already equal to max like 13 equal to 13 and i enter more value it becomes i.e 136. i trying its…
I am deep into making my blazor server app and I wanted to add the attribute authorize to all my pages to make sure my wep app is secure, exluding the login page. However now that I have added this…
I'm new to Blazor and trying to figure out how Blazor renders components into HTML tags. If I use a simple component like this: <InputText @bind-Value="testvalue" id="sample-textbox></InputText> @code { public string testvalue = "abc123"; } Then I run my app,…
I need your help I'm not expert creating Custom Teams App, this is my first App and I'm creating a Custom Teams App in Microsoft Visual Studio 2022 (Blazor), the App is ready I Already finished and every time I…
I'm currently building a Create Account page for my project and trying to figure out what's wrong with my code. The issue is that, when I fill in all the blanks and press the Create Account button it sends empty…
In Blazor / C# / ASP.NET Core 8.0, I am trying to load the InputSelect with the list when it is clicked, but I am not able to do it. Actually I want to make something like multiple InputSelects. Let's…
I have this dialog in MudBlazor that has a vertical overflow because it is larger than the max-height. I would like to keep this max-height, the only thing I was wondering if possible is if the title content can stay…
Using VS2022, C#, Blazor and jquery the code first loads a "C:ImagesdefaultImage.png" into a canvas region in the page: <canvas id="CanvasId" @ref="canvasElement"></canvas> await JS.InvokeVoidAsync("loadImageOnCanvas", "CanvasId", "/scripts/defaultImage.png"); Then at certain point, I need to know if the image in the canvas…
I have a server app that connects to a custom login server, receives a JWT, and stores it in session storage for use throughout the app. I use <AuthorizeView> to contain restricted content, but it always resolves to <NotAuthorized> until…
On https://docs.blazorbootstrap.com/ there is a light-dark theme switcher near Github and Twitter links: However there is no explanation how to do it. Bootstrap 5 has now support for dark theme if you apply data-bs-theme="dark" attribute to <html> element https://getbootstrap.com/docs/5.3/customize/color-modes/#enable-dark-mode I…