Whats Wrong With Blazor Adoption
19:27
Is Blazor TRASH?!
21:28
Жыл бұрын
What Is Blazor United? (.Net 8??)
14:28
Blazorise - Before You Download
6:19
Bootstrap 5 VS MudBlazor
26:01
Жыл бұрын
The TRUTH about Blazor Jobs (In 2022)
13:14
Пікірлер
@davidmason3973
@davidmason3973 18 күн бұрын
Thank you for explaining SetParameter method. Id don't know it didn't have access to the state of the component!
@bacalekevin8763
@bacalekevin8763 Ай бұрын
Hello everyone, I'm wondering how to use the OnSubmit event in MudForm. Specifically, I want to submit the form when I press the Enter key. I've checked the documentation, but there's no mention of this functionality. Any solution would be greatly appreciated.
@nataliacoelhx
@nataliacoelhx Ай бұрын
excellent content!
@juliogutierrez3166
@juliogutierrez3166 Ай бұрын
I ve been struggling so much trying to understand why a simple form post would refresh the whole screen... Until I just realized it is the way Razor Server works. That got me into Ajax and handling those calls client side to update state in the browser avoiding the page reload. I am a backend developer and did not have much experience with frontend, still I have to say that Razor is very fast and simple for small projects, mostly one pagers, when you understand the core concepts of how it works.
@loloycarl
@loloycarl 2 ай бұрын
FullSrackHero the most underrated NetCore API and Blazor Webassembly starter kit. We are using it as our production grade systems plus MAUI as client.
@paulakwakernaak2056
@paulakwakernaak2056 2 ай бұрын
I want to be able to Navigate by the input id of the browser.? So I want to give a URL like /Home/1 amd act on the Id =1 . How to get the 1 of the url ?
@903koolaid91
@903koolaid91 2 ай бұрын
Thanks a ton you made this super simple!!
@timurryssuly305
@timurryssuly305 2 ай бұрын
My appSettings.json "DefaultConnection" is much shorter: ""DefaultConnection": "DataSource=app.db;Cache=Shared"" Why is this? and how do I solve this?
@ibrahimizi741
@ibrahimizi741 2 ай бұрын
Thank you From Syria Arab Republic But how to add Roles in This Template
@omarl7333
@omarl7333 2 ай бұрын
maybe public class ProfileState : Profile
@queenstownswords
@queenstownswords 2 ай бұрын
What happened to this guy?
@Don-ii4vm
@Don-ii4vm 3 ай бұрын
Heads up to anyone getting a Delegate error on the OnClick event like I did when I tried following the steps in the video to create a MudBlazor Server project.... I tried creating the project as the MudBlazor Installation page suggested: Ie: dotnet new mudblazor --host wasm --name MyApplication ...but had problems with the --host part of the command. To create the project I used: dotnet new mudblazor --interactivity Server --name MudProject
@joeyguerrieri3710
@joeyguerrieri3710 3 ай бұрын
Very good videos, Is there an easy way to print the muddatagrid?
@Ocean7653
@Ocean7653 3 ай бұрын
Maui is shit! It’s racking up a bad wrap. How can a code base from a tech giant be shitty. Who forced them to release. It’s easier t learn develop with flutter than setup a maui project
@user-yo7mw6oj4p
@user-yo7mw6oj4p 3 ай бұрын
Спасибо.
@davidjackson148
@davidjackson148 3 ай бұрын
I can't even get that far. I always get "The decryption operation failed, see inner exception." when it tries to create :(
@krisztiantakacs6001
@krisztiantakacs6001 4 ай бұрын
Your video is about how to add drag and drop in JAVASCRIPT not in Blazor. Forget JS when use Blazor. I made it in C# without any JS code.
@itsamonkey1
@itsamonkey1 4 ай бұрын
​@justblazorprogramming You repeatedly say in the video and the comments that the source code is not available. This is not true. Yes the package you install via nuget is a .dll and without decompiling it you cannot see the code. However, the code is available from their github, in the folder src/MudBlazor. All the code for the components is in the component folder. You can edit the code, and just include the source with @using instead of the nuget package, create your own .dll or nuget package, or create an extension to mudblazor
@itsamonkey1
@itsamonkey1 4 ай бұрын
Hope I'm not forgetting any other errors in the video, but other than that this tutorial is great, excellent resource for beginners! Hope you can edit that part of the video
@itsamonkey1
@itsamonkey1 4 ай бұрын
Ah I did forget something. The MudBlazor packages you referred to in the video, they are all official, they are just meant for different things. You downloaded MudBlazor.Template, which includes the MudBlazor package(the component library amongst other things) and also templates to start a new project, like the one you used. Both packages should use the same version of MudBlazor
@itsamonkey1
@itsamonkey1 4 ай бұрын
I believe there was another package that included different themes...or was it a theme editor...idk but it's on the mudblazor site if you want more info
@f2losada
@f2losada 4 ай бұрын
tengo el siguiente caso al utilizar el componente de MudSelect con cleses para cargar elementos seleccionados con strin funciona bien pero con clase no he podido alguien me puede ayudar relaciono ejemplo @page "/PuebaUsuarioPopup" @using System.Linq <MudSelect ToStringFunc="@(e => e.Nombre.Trim())" MultiSelection="true" Value="value" SelectedValues="options" T="ClienteComboDTO" Label="Seleccione" AdornmentIcon="@Icons.Material.Filled.Search" AnchorOrigin="Origin.BottomCenter" TextUpdateSuppression="true"> @foreach (var state in states) { if (options.Any(o => o.IdCliente == state.IdCliente)) { <MudSelectItem T="ClienteComboDTO" Value="@state" Selected="true" >@state.Nombre</MudSelectItem> } else { <MudSelectItem T="ClienteComboDTO" Value="@state">@state.Nombre</MudSelectItem> } } </MudSelect> <MudFab ButtonType="ButtonType.Reset" Style="margin-bottom:5px " StartIcon="@Icons.Material.Sharp.Clear" Label="Cancelar" Color="Color.Secondary" OnClick="Cancel" Size="Size.Small" /> @code { private ClienteComboDTO value { get; set; } = new(); private IEnumerable<ClienteComboDTO> options { get; set; } = []; private IEnumerable<ClienteComboDTO> states = new List<ClienteComboDTO> { new ClienteComboDTO { IdCliente = 1, Nombre = "Cliente 1" }, new ClienteComboDTO { IdCliente = 2, Nombre = "Cliente 2" }, new ClienteComboDTO { IdCliente = 3, Nombre = "Cliente 3" }, new ClienteComboDTO { IdCliente = 4, Nombre = "Cliente 4" } }; protected override void OnInitialized() { options = new List<ClienteComboDTO> { new ClienteComboDTO { IdCliente = 1, Nombre = "Cliente 1" } }; StateHasChanged(); } private void Cancel() { var s = states; } public class ClienteComboDTO { public int IdCliente { get; set; } public string? Nombre { get; set; } } }
@khanfaizan05
@khanfaizan05 4 ай бұрын
What fonts are you using in visual studio for text editor and fir environment?😊
@D3K018
@D3K018 4 ай бұрын
Yup, blazor is indeed trash.
@rahulg2040
@rahulg2040 4 ай бұрын
Dude good video and explanation. But please be more articulate because i speed up ur videos I cannot understand you.
@user-yo7mw6oj4p
@user-yo7mw6oj4p 4 ай бұрын
Спасибо. Лучшие видео про Blazor
@user-yo7mw6oj4p
@user-yo7mw6oj4p 4 ай бұрын
Отличный учебный урок. Спасибо.
@vuhoang5903
@vuhoang5903 4 ай бұрын
I think Fluent UI is considerable
@Pillow1-yl1yn
@Pillow1-yl1yn 4 ай бұрын
Hello, I really enjoyed your video and want to use this simple authentification for my first Blazor-Project. There's a problem though: If you register, you can simply click on "Click here to confirm your account" on the page that appears after you registered and then you will be able to access all authorized pages via the self-confirmed E-Mail. I specifically chose your simple approach of authentification so I can create a save authorized website where users can only be confirmed via access to my SQL-Server and database. Is there a simple way to disable the possibility of self-confirming by clicking on "Click here to confirm your account"? Thanks in advance <3
@user-eg4qz9yc7e
@user-eg4qz9yc7e 4 ай бұрын
Fun fact: You can also use synchronous javascript ((IJSInProcessRuntime)JS).InvokeVoid("nameOfFunction"); instead of asynchronous await JS.InvokeVoidAsync("nameOfFunction");
@rickfiji4486
@rickfiji4486 4 ай бұрын
Great video! Very helpful to know there is at least a tacky workaround.
@Cos3D
@Cos3D 4 ай бұрын
registered my email but didnt get the cheat sheet ,
@Cos3D
@Cos3D 4 ай бұрын
i always see barebone web pages beeing made with blazor. Can we even input images, nice UI , videos, 3D elements like modern pages or is it not possible ?
@fastersixth
@fastersixth 4 ай бұрын
Got stuck directly. Mudblazor templates was not installed only mudblazor webapp. The project looks totally different from yours so I had to stop and now I have to try to redo it all. Or see if I can find a video where it looks the same. Just realised the templates are not installed anymore, it's instead the webapp. So I can't follow along with you, but I'll test it.
@matsastrom734
@matsastrom734 4 ай бұрын
Solution: In Routes.razor in the top add this: @rendermode InteractiveServer that solves the issues with the drawer that exists in .NET8
@garytripodi3758
@garytripodi3758 4 ай бұрын
Im getting addicted to Blazor, but I am really struggling with their nav out of the box. It seems that it doesnt play nicely with the JSRuntime Interop and I cant get pure Bootstrap classes to work for dropdown buttons, and when tried with the blazor method using cshtml it has undersired behavior in mobile render where clicking on the dropdown button first closes the enitre navbar and got to click the menu button again which reveals the sub items. Ive been hacking away at a solution with just using bootstrap and my own logic in MainLayout.razor but I cant seem to get @body to render at the top of the page when using the sidebar in desktop mode. if i can sort that I believe thats the way to go. I may have to look at the Mud, but at the same time i am perfectly happy with using Bootstrap
@evilbee94
@evilbee94 5 ай бұрын
Also: Blazor is better than React because it has far less (or zero) dependency on Node packages. The amount of time I’ve lost in dependcy hell because of “npm update” failing is mind blowing. I’ve always thought it was stupid to have npm and Nuget in the same assembly… Also JavaScript was good when people actually used it to script. Then Node came along and made JS do all of the things that PHP used to… I guess people thought JS was better looking than PHP code but when you’re making entire modules out of it inside a .NET solution it just looks a mess
@krisztiantakacs6001
@krisztiantakacs6001 5 ай бұрын
Javascript is one of the worst script language that ever made.
@MrFrisco1981
@MrFrisco1981 5 ай бұрын
HAha this did not age well.
@unskeptable
@unskeptable 5 ай бұрын
Why ?
@cheronecom
@cheronecom 5 ай бұрын
I guess he is done with the channel
@user-eg4qz9yc7e
@user-eg4qz9yc7e 5 ай бұрын
Plz let me know when U can write all of the functionality in Blazor
@Jonas-zp1ep
@Jonas-zp1ep 5 ай бұрын
Hypermedia baby, Razor Pages with HTMX rocks! 😎
@NickTheCodeMechanic
@NickTheCodeMechanic 15 күн бұрын
Glad you like it. I use it too, exclusively for freelancing and for companies who allow it.
@stewtech
@stewtech 5 ай бұрын
Is this channel still active?!?
@calmhorizons
@calmhorizons 6 ай бұрын
Great content - thanks mate.
@user-eu2xd7jr5l
@user-eu2xd7jr5l 6 ай бұрын
::deep is deprecated in CSS
@Benni720
@Benni720 6 ай бұрын
I got the Emulator running and simply displaying a variable is already a nightmare.
@samuhuse6706
@samuhuse6706 6 ай бұрын
bro, you're just too slow
@dtsai
@dtsai 6 ай бұрын
Love you vidoes because they brief and focus on a single topic. How about videos to show good ways to use Blazor with WebAPI and them wtih SQL?
@jorgesousavieira1817
@jorgesousavieira1817 6 ай бұрын
I really HATE web development, but some client insist to migrate his windows form app to web, I heard that there are some tools / method to migrate a windows form app to web, is there anybody that knows about this?? Or, there is some tool that helps to design the html5 page and place in Blazor instead to code everything by hand? like a dumb linux user????
@Arestkaramazov
@Arestkaramazov 6 ай бұрын
This video reminds me my electrical circuits teacher, solving the examples on the book and then nobody would solve the problems on the test.
@WillyGilbert
@WillyGilbert 6 ай бұрын
Do you have any example with MudDataGrid using server side?
@livb4139
@livb4139 6 ай бұрын
this look so complicated surely there's an easier way of doing this?
@livb4139
@livb4139 6 ай бұрын
the issue with this is that as soon as you refresh the page the scoped object is gonna get reinstantiated no?
@livb4139
@livb4139 6 ай бұрын
i wish i could put your vids at x4 speed