Thank you Julio, I really appreciate your job and that you want to share it for free. You are really good teacher, I know what I am saying because I have watched a lot of programming stuff.
Incrredible stuff. I have been only working with MVC and this video is perfect for someone who would like to know what Blazor is and how it works. The most detailed/friendly and up to date Blazor video out there! I also really like how you started with the most simple version of Blazor app instead of having the visual studio create the classic weather page template.
I am so grateful for the work you've done so far! Your courses are very helpful in preparing myself to be a full stack developer. Thank you everything!
Lucky enough to swipe your video. Although I don't speak English well, I probably know how to do it according to your explanation, thank you very much, great teacher!
Thank you so much, you really helped me to get up to speed with the framework and saved me tons of time! Great tutorial, and your explanations are extremely helpful and detailed! There is only one thing I'm not getting: why adding a modal for each table row (3:45:30) and not just creating one modal and on edit button click not passing the selected game id to this one modal? Wouldn't having just one modal positively impact both server- and client-side performance? I understand that this is totally fine for the tutorial, but in the long run, I would prefer make things rather more lightweight. Or am I missing something?.. Anyway, once again, thank you!
I'm glad the tutorial helped. To your modal question, it's likely doable, but probably not with just Static SSR. Since that would require interactivity, would need to switch to one of the interactive rendering modes to run C# when you click to open the modal.
1:43:25 why do you declare the "game" variable as a property with {get; set;} but declare genresClient a few minutes later as a field (without getter and setter)? How do I know when to declare as which?
Thanks @Julio Casal for this. I always love your content and how perfect you teach. Please if you would add authentication and authorization and how both the client and API handles this both for both custom authentication and default provided by .NET
Hey Julio, love your tutorials man. Just need to know if you have a video explaining the differences between Blazor web apps and Razor ones? Because I have a project in Razor at my workplace and it would really help to understand the folder structure and other aspects and how it differs from or is better or worse than Blazor. Keep doing what your doing man, your my go to person for C# tutorials
Hi Julio, great course, I really enjoyed it and was able to reproduce it following the steps! I was wondering if there is different material or extra material in the paid course?
I'm glad it helped. The paid course includes the slide decks as printable handouts, a break down into 5-7 min lessons, snapshots of the source code on every lesson and quizzes at end of each module.
@@juliocasal True, thanks for reply. It was catching the errors the first few times I built the project. But it's stopped now. Guess it's what they say about vs code being kinda slow, in blazor from what I've read/watched (if that's true I don't know)
@@juliocasalAfter the project was created, it showed the type or namespace name error in Program.cs and Imports.razor. I did not change anything at all but the projects executes if I run it even with those errros.
Came here from the minimal api course ,Thank you so much for such an amazing course god bless you. I also have a small question iam still going to look in to it later once iam done but for now can you tell me why we are using a string for the genre Id specifically we can use an int for it right?
Can anyone tell me the settings.json values for razor files in VSCode for indenting the new() records as shown under the @code section in the games collection (from time1:08 onwards)? thx. @code { private GameSummary[] games = [ new(){ Id = 1, Name = "Street Fighter II", Genre = "Fighting", Price = 19.99M, ReleaseDate = new DateOnly(1992,7,15) } ]; }
Thank you so much for a great course, Julio! However, I am having a problem finding the source code for the backend. The only download I find is for the Blazor-part. Can you give me a hint to where I find it?
Hi, really well done. Only things I missed were passing arguments between parent and child components, eventcallbacks and I think I didn't see StateHasChanged() anywhere. But, very enjoyable and well explained. Watching this video after doing a couple of other courses, because I really want stuff to stick well in my brain with different people explaining. and I could just follow along well, so I guess I understand the basics. BTW. integrating with that minimal api project -> nice.
I have been following your tutorial to the letter and is the best I have seen, I don't have VS Code so I am using VS 2022, NavigationManager throws an error that I can't seem to find a fix. Exception of type 'Microsoft.AspNetCore.Components.NavigationException' was thrown. Do you have any idea why this is happening? VS 2022 is version: 17.9.7, Thanks
Awesome video! watched both the frontend and backend videos. Just had a quick question as this has been puzzling me, why did editform work without interactive SSR, while delete didn't work?
When editing, you are simply making a form post, but for delete you are handling the click of a button, which normally would require a bit of JavaScript, but here we did it with C# + interactivity.
Incredible course Julio. I made your other course, the Game Store.API, but in this case you build the frontend in a separate project, in other folder. I'm halfway through the tutorial, so maybe you answered this and I don't know, but my question is: can I build the frontend in the same folder as the API? Like have a folder named "GameStore", and inside have two projects, one the GameStore.API and other the GameStore.Frontend, or needs to be in separate folders? Thanks.
I love the videos!!! Could we do a zoom meet (I will pay you) or can you please create a video on how to create a secure login (for a deployed website) with authentication and authorization? I saw your video on JWT but I am still confused on how to integrate it with the backend while keeping everything secure not in a local development, you explain everything clearly I am just not getting it!
I'll include a version of this Blazor frontend with authentication and authorization in my upcoming bootcamp: go.dotnetacademy.io/bootcamp-waitlist In the meanwhile, I provide a Blazor WASM client with authentication and authorization in this course: juliocasal.com/courses/dotnetrestapis
Great video, i just started developing in blazor, and i used the webassembly, whats the difference between this and a web app? also i tried hosting it on github pages, but got an error while building static html
Hi @Julio! Thank you so much for the amazing tutorials! I would like to know if you could please assist me with the delete button without using Bootstrap?
Great video. This one is using Blazor Server I guess. There is Blazor Wasm too. Still didn't understand why Microsoft didn't keep just one of them, am getting confused.
@@juliocasalOkay. Am new into Blazor. Am trying to create a blazor wasm project with web api and got stuck into a problem. Not getting any source of help so I thought I may get some help from this video. Thanks.
I think you should upload version control after every chapter on the code to physically see the changes and if anything from previous chapter was wrongly implemented
I really wanted to use Blazor for our next project but my team saying React is faster than Blazor. Could you please make video of how good the Blazor is?
What about the performance? I've read some posts from Reddit about the performance issues of Blazor especially the WASM, but that was .Net6. How about the latest .Net8?
Unfortunately that can't be truly known by you unless the app is created in both frameworks by urself and you test. Don't rely on others in this area. I'm creating the same app in three different frameworks with clean arch n DDD
1:52:16 Build errors, the form fields attempting to access game fail to find any of its properties. dot syntax works, autofill works, no errors indicated in the file, @using Model is where it should be. Am I cursed or what could be wrong? Game variable in @code section has 6 references exactly as in the video. Unlike in your demonstration, the color of game in @bind-Value="game.Name" is orange, not blue. The variable part '.Name' is blue.
@@juliocasal thanks for responding. Im not at my PC now, and in the end building the project in VS2019 worked. I’ll check after work just in case anyone else has this problem but Yes I believe GameDetails had a Name property when I first had this problem.
I was testing and find this: - Right click in C# extension, Install another version, pick another version - Do the same thing for C# dev kit - Restart Vscode
Loved your content !👌 Can you please tell which extension you use for HTML intellisense suggestion inside razor file also which theme you are using currently.
I can't fix it. 3:16 when edit editgame/1, i have error InvalidOperationException: Sequence contains no matching element System.Linq.ThrowHelper.ThrowNoMatchException() System.Linq.Enumerable.Single(IEnumerable source, Func predicate) GameStore.Frontend.Clients.GamesClient.GetGame(int id) in GamesClient.cs + var genre = genres.Single(genre => string.Equals( GameStore.Frontend.Components.Pages.EditGame.OnParametersSet() in EditGame.razor + game = GamesClient.GetGame(Id.Value); Microsoft.AspNetCore.Components.ComponentBase.RunInitAndSetParametersAsync() but when make editgame/2 and 3 is working well
What an amazing course - really awsome. I can't seem to get to modal working though (I am using Visual Studio 2022, not VS Code). Nothing happens, when I click the delete-button. Anyone?
@@juliocasal Yes, rendermode is InteractiveServer. Showing modals is actually a recurring problem. Could the browser be the problem, I wonder? Maybe my browser is surpressing popups in some way? Hmmmmm.....
@@juliocasal Yes - I am not even getting the url, when I hoover over the button, like I do on the edit-button. Do I fail to register this in some way, perhaps
you are my hero julio casal! thanks for sharing all your Blazor and dotnet expertise here. it is wonderful.
Wow, thank you!
It's really impressive that your released such an amazing course for free! Well done and thanks!
My pleasure!
5 hours very well spent. I worked using Blazor in a recent contract role and wish I'd done this before starting. Excellent Course!
Glad it was helpful!
Very nice and comprehensive course with this and the backend one!
Thank you, I’m glad you enjoyed it!
i love the way how you teach , please keep going and create more advanced tutorials for us . GOAT
More to come!
Thank you Julio, I really appreciate your job and that you want to share it for free. You are really good teacher, I know what I am saying because I have watched a lot of programming stuff.
Thank you, really appreciate your kind words!
Incrredible stuff. I have been only working with MVC and this video is perfect for someone who would like to know what Blazor is and how it works. The most detailed/friendly and up to date Blazor video out there! I also really like how you started with the most simple version of Blazor app instead of having the visual studio create the classic weather page template.
Glad you liked it!
You are explaining every nook and corner very clearly. We are very blessed to have master like u.Lots of Thankyou sir
Thank you so much for the kind words!
Thanks a lot Julio. I picked up Blazor 2 days ago and I'm rocking it :)
Rock on!
I am so grateful for the work you've done so far! Your courses are very helpful in preparing myself to be a full stack developer. Thank you everything!
You're very welcome!
Lucky enough to swipe your video. Although I don't speak English well, I probably know how to do it according to your explanation, thank you very much, great teacher!
Glad I could help!
the first 56 minutes are already extremely helpful
I’m glad!
Yesssssss this has been much awaited... You've been so much helpful on my journey so far... Many thanks!!
Glad I could help!
A perfect course about Blazor!! Thanks a lot for sharing. I subscribed long time ago.
Much appreciated!
@@juliocasal You are amazing. Appreciate it. Best course in Blazor on RUclips.
Thanks a lot sir. Something I love from this community is the much learning resources. 🚀
My pleasure!
Where, oh where can I buy you a coffee ??? This is so amazing, loving every minute!
I'm glad you are liking it!
One of the best tutorial on blazor.
Thank you!
Thank you. Very good explanation for a beginner.
Thank you clicksaver man. I wanted to learn Blazor without dying on first try lol.
Glad to help!
Thank you so much for this amazing video. Really kick-started my learning of Blazor, much appreciated.
Glad it helped!
Thanks
You're welcome, and thank you!
Thank you so much, you really helped me to get up to speed with the framework and saved me tons of time! Great tutorial, and your explanations are extremely helpful and detailed!
There is only one thing I'm not getting: why adding a modal for each table row (3:45:30) and not just creating one modal and on edit button click not passing the selected game id to this one modal? Wouldn't having just one modal positively impact both server- and client-side performance? I understand that this is totally fine for the tutorial, but in the long run, I would prefer make things rather more lightweight. Or am I missing something?..
Anyway, once again, thank you!
I'm glad the tutorial helped. To your modal question, it's likely doable, but probably not with just Static SSR. Since that would require interactivity, would need to switch to one of the interactive rendering modes to run C# when you click to open the modal.
Amazing and Very Impressive … Thanks for your Efforts
Thank you too!
Love your course Julio. Thank you soo much! I learned a lot!
Awesome, thank you!
Thanks 👍 for using vs code its much better god bless you❤
You're welcome 😊
Fantastic - thanks so much for what must have been days or weeks in the making!
A little over a month, but I think well worth it!
Great course! You explain well. Thank so much.
You're very welcome!
ماشاء الله عليك يا هندسة شرحك جامد جدا و مفصل اتمنى تكمل والله و باذن الله هتكسر الدنيا والله عشان انت تستاهل❤❤
வாழ்த்துகள் 🎉🎉🎉நன்றி
Welcome!
1:43:25 why do you declare the "game" variable as a property with {get; set;} but declare genresClient a few minutes later as a field (without getter and setter)? How do I know when to declare as which?
The SupplyParameterFromForm can only be applied to properties. genresClient does not have this requirement.
Thank a lot for the awesome tutorial as usual. Now I think I can learn Blazor.
You can do it!
Thanks.
that is great, I really appreciate your job and very happy for finding this clip and your channel
Thank you very much!
Thanks for share with us!!! All the best!!!
Thanks @Julio Casal for this. I always love your content and how perfect you teach.
Please if you would add authentication and authorization and how both the client and API handles this both for both custom authentication and default provided by .NET
Hey Julio, love your tutorials man.
Just need to know if you have a video explaining the differences between Blazor web apps and Razor ones?
Because I have a project in Razor at my workplace and it would really help to understand the folder structure and other aspects and how it differs from or is better or worse than Blazor.
Keep doing what your doing man, your my go to person for C# tutorials
Sorry, I don't have such a video. But the recommendation today is to create new sites using Blazor, not Razor.
@@juliocasal Its fine I just asked in case you have one, sure I will focus on blazor as its latest.
Thanks for the course. Love it !🥳🥳🥳🥳🥳🥳
So glad!
Interesting course, thanks Julio!
My pleasure!
Thanks for such an incredible course😃
Glad you like it!
Amazing video, i'm your fan right now
Thank you!
This is really good Julio. Thank you.
Welcome!
Hi Julio, great course, I really enjoyed it and was able to reproduce it following the steps! I was wondering if there is different material or extra material in the paid course?
I'm glad it helped. The paid course includes the slide decks as printable handouts, a break down into 5-7 min lessons, snapshots of the source code on every lesson and quizzes at end of each module.
循序渐进,很好的入门教程👍
Waiting for another Blazor Course ❤
Thank you for your work :) It is usefull, I've got a lot of new information
You are welcome!
Thank you for your sharing. I learned a lot of knowledge from your channel.
Great!
I appreciate you used VS Code instead of Visual studio for this tutorial. Great
Welcome!
very beginner friendly, tnx a lot
You're welcome!
Thanks for lecture..
Question: How were the errors in the Program.cs file resolved. 17:26
There are no errors. Some red squiggles might show in the editor, but the code compiles.
@@juliocasal True, thanks for reply. It was catching the errors the first few times I built the project. But it's stopped now.
Guess it's what they say about vs code being kinda slow, in blazor from what I've read/watched (if that's true I don't know)
It actually still brings it up when I run the dotnet watch command. Not sure why it ignores only to bring it back again
Thank you sir, your video is what I was looking for.
Glad it helped!
Awesome explanation! Thanks 🙌
My pleasure!
Thank you very much for your tutorial, I am a beginner and slightly regret that there is no tutorial for reading SQL data
For reading SQL data?
@@juliocasal yes. i'm from china,my english is not good. i mean how does the frontend or backend get the data from SQL database
How did you remove the type or namespace name error in the beginning? Any extensions or way for visual studio code
?
@@juliocasalAfter the project was created, it showed the type or namespace name error in Program.cs and Imports.razor. I did not change anything at all but the projects executes if I run it even with those errros.
I found the way for anyone encountering the same problem.
Came here from the minimal api course ,Thank you so much for such an amazing course god bless you. I also have a small question iam still going to look in to it later once iam done but for now can you tell me why we are using a string for the genre Id specifically we can use an int for it right?
You're very welcome!
Can anyone tell me the settings.json values for razor files in VSCode for indenting the new() records as shown under the @code section in the games collection (from time1:08 onwards)? thx.
@code {
private GameSummary[] games =
[
new(){
Id = 1,
Name = "Street Fighter II",
Genre = "Fighting",
Price = 19.99M,
ReleaseDate = new DateOnly(1992,7,15)
}
];
}
I didn't use any settings.json file. Likely I did tab for proper indentation.
I am also having formatting issues. Even tabbing or spacing to format, reverts on save.
Great course, thank you for posting.
My pleasure!
Thank you so much for a great course, Julio! However, I am having a problem finding the source code for the backend. The only download I find is for the Blazor-part. Can you give me a hint to where I find it?
Here: ruclips.net/video/AhAxLiGC7Pc/видео.html
Thank you for the tutorial much appreciated🙏🙏
No problem 👍
Thanks brother
Very nice Tutorial 🌺
Welcome!
Great tutorial. Thanks Julio
Glad you liked it!
Hi, really well done. Only things I missed were passing arguments between parent and child components, eventcallbacks and I think I didn't see StateHasChanged() anywhere.
But, very enjoyable and well explained. Watching this video after doing a couple of other courses, because I really want stuff to stick well in my brain with different people explaining. and I could just follow along well, so I guess I understand the basics.
BTW. integrating with that minimal api project -> nice.
Glad it helped!
Excellent tutorial, thank you 👍
You’re welcome!
Instant like! Having a slow day at work, so you saved me from unproductive faffing about 🤣
Great to hear!
I have been following your tutorial to the letter and is the best I have seen, I don't have VS Code so I am using VS 2022, NavigationManager throws an error that I can't seem to find a fix. Exception of type 'Microsoft.AspNetCore.Components.NavigationException' was thrown. Do you have any idea why this is happening? VS 2022 is version: 17.9.7, Thanks
It's likely an expected exception. Try without debugging (CTRL+F5) and the exception should not bother you.
@@juliocasal Excellent! It worked, thank you very much.
Hi, Im still newbie with VS Code and C#, I dont know how to enable read underline check error, can you explain to me how to enable it please
Here: ruclips.net/video/O4dCgYicoDg/видео.html
Thank you for such a great course for free! Just want to let you know that there is something wrong on your website when it comes to header.
Header?
@juliocasal sorry, the navbar
@@juliocasal Can you see it Sir? The navbar is not sticked to the top, there is a gap when you scroll at least in google chrome
Awesome video! watched both the frontend and backend videos. Just had a quick question as this has been puzzling me, why did editform work without interactive SSR, while delete didn't work?
When editing, you are simply making a form post, but for delete you are handling the click of a button, which normally would require a bit of JavaScript, but here we did it with C# + interactivity.
Hi Julio - thanks for the great tutorial! Curious what software you use to draw arrows on the screen? Do you just use your mouse to click and drag?
Zoom It: learn.microsoft.com/en-us/sysinternals/downloads/zoomit
Hi, can I know what is he command to build the project as a static web app?
It's not a Static Web App, you need a web server.
Incredible course Julio. I made your other course, the Game Store.API, but in this case you build the frontend in a separate project, in other folder. I'm halfway through the tutorial, so maybe you answered this and I don't know, but my question is: can I build the frontend in the same folder as the API? Like have a folder named "GameStore", and inside have two projects, one the GameStore.API and other the GameStore.Frontend, or needs to be in separate folders? Thanks.
Either way will work.
@@juliocasal Thanks.
I love the videos!!! Could we do a zoom meet (I will pay you) or can you please create a video on how to create a secure login (for a deployed website) with authentication and authorization? I saw your video on JWT but I am still confused on how to integrate it with the backend while keeping everything secure not in a local development, you explain everything clearly I am just not getting it!
I'll include a version of this Blazor frontend with authentication and authorization in my upcoming bootcamp: go.dotnetacademy.io/bootcamp-waitlist
In the meanwhile, I provide a Blazor WASM client with authentication and authorization in this course: juliocasal.com/courses/dotnetrestapis
我很喜欢希望能继续更新😀
Awesome content!
Glad you enjoyed it
Great video, i just started developing in blazor, and i used the webassembly, whats the difference between this and a web app? also i tried hosting it on github pages, but got an error while building static html
I explain WebAssembly towards the end.
Would it be possible to have a tutorial on how to deploy this app? Thank you so much for these videos!
No exactly this app, but here: ruclips.net/video/XtWubiUzz-k/видео.html
@@juliocasal Thank you!
Why is @rendermode InteractiveServer not working. The error says: "The name 'InteractiveServer' does not exist in the current context" 4:02:45
Do you have this in your _Imports.razor file?
@using static Microsoft.AspNetCore.Components.Web.RenderMode
@@juliocasal thank you for this it is now working
Do i need to know C# before I can watch and follow this video? and do you have a video for that? before I continues to watch this?
Yes, you need to learn C# first. Here: dotnet.microsoft.com/learn/csharp
Hi @Julio! Thank you so much for the amazing tutorials! I would like to know if you could please assist me with the delete button without using Bootstrap?
?
Great content 👍
Hey man, I know nothing about coding but want to become a C# Web developer ( not game or mobile ) where should I begin ?
Here: dotnet.microsoft.com/learn/csharp
Why use VScode when Visual Studio 2022 makes it so much easier to create projects and code?
Here: ruclips.net/video/FHnwVsDRu3k/видео.html
thank you so much. what is your recommendation after this course?
Depends on what you'd like to learn next.
@@juliocasal i want to create ecommerce training website to practice dotnet core and blazor
Great video, I just can't seem to find the link to the backend API
Check the backend video in the description
You are the best. Thanks a lot!!!
You're welcome!
Great video. This one is using Blazor Server I guess. There is Blazor Wasm too. Still didn't understand why Microsoft didn't keep just one of them, am getting confused.
Thanks, this one uses Blazor Static SSR, with a bit of WASM towards the end.
@@juliocasalOkay. Am new into Blazor. Am trying to create a blazor wasm project with web api and got stuck into a problem. Not getting any source of help so I thought I may get some help from this video. Thanks.
excellent, many thanks
Thank you too!
Excellent stuff
Glad you think so!
Great video 👍🏿
Thanks for watching!
can't I use visual studio instead of visual studio code?
You can.
I think you should upload version control after every chapter on the code to physically see the changes and if anything from previous chapter was wrongly implemented
I absolutely adore your vids btw I am in no place to criticise you
I provide lesson by lesson source code in the paid version: juliocasal.com/courses/blazor-essentials
@@juliocasal I appreciate it ! Thanks
I really wanted to use Blazor for our next project but my team saying React is faster than Blazor. Could you please make video of how good the Blazor is?
For sure development time is much higher with Blazor vs. React
What about the performance? I've read some posts from Reddit about the performance issues of Blazor especially the WASM, but that was .Net6. How about the latest .Net8?
@@juanzero10react is a few millisecond faster 🤷🏽♂️
Unfortunately that can't be truly known by you unless the app is created in both frameworks by urself and you test. Don't rely on others in this area. I'm creating the same app in three different frameworks with clean arch n DDD
Can I join your team?
Seguire este curso ojala me valla mejor :')
Amazing! Thanks a lot.
You're welcome!
1:52:16 Build errors, the form fields attempting to access game fail to find any of its properties.
dot syntax works, autofill works, no errors indicated in the file, @using Model is where it should be. Am I cursed or what could be wrong?
Game variable in @code section has 6 references exactly as in the video.
Unlike in your demonstration, the color of game in @bind-Value="game.Name" is orange, not blue. The variable part '.Name' is blue.
Path\EditGame.razor(29,9): error CS0117: 'GameDetails' does not contain a definition for 'Name' [Path\GameStore.Frontend.csproj]
Does your GameDetails class has a Name property?
@@juliocasal thanks for responding. Im not at my PC now, and in the end building the project in VS2019 worked. I’ll check after work just in case anyone else has this problem but Yes I believe GameDetails had a Name property when I first had this problem.
Hi im interested to learn c# but I have MacBook so I can do this course on it.
You can use your MacBook.
Am I the only one to get errors Namespace GameStore could not be found? I can only get this to work by running this in Visual Studio
Blazor support in VS Code is not as good as in VS yet.
It's a weird bug, try this:
- remove extension C# Dev Kit
- close the Vscode
- open and install C# Dev Kit
- close again
- Open and see if works
I was testing and find this:
- Right click in C# extension, Install another version, pick another version
- Do the same thing for C# dev kit
- Restart Vscode
@@estevves3903 Didn't work, but thanks. I will just continue to use VS
@@michaelday6987 Really? Installing another version for C# extension worked for me, in this case it's better VS
it looks like for vs code u can debug or have hot reload but not both
Yes, I never thought about using hot reload while debugging.
Loved your content !👌 Can you please tell which extension you use for HTML intellisense suggestion inside razor file also which theme you are using currently.
Thanks, I use the C# Dev Kit Extension the default VS Code theme.
I'm using VS code on mac, same extension c# dev kit installed but still not getting the html intellisense suggestions 🤔
I can't fix it.
3:16 when edit editgame/1, i have error
InvalidOperationException: Sequence contains no matching element
System.Linq.ThrowHelper.ThrowNoMatchException()
System.Linq.Enumerable.Single(IEnumerable source, Func predicate)
GameStore.Frontend.Clients.GamesClient.GetGame(int id) in GamesClient.cs
+
var genre = genres.Single(genre => string.Equals(
GameStore.Frontend.Components.Pages.EditGame.OnParametersSet() in EditGame.razor
+
game = GamesClient.GetGame(Id.Value);
Microsoft.AspNetCore.Components.ComponentBase.RunInitAndSetParametersAsync()
but when make editgame/2 and 3 is working well
Means there’s no game with ID 1?
@ but i have same as editgame/2 and 3. And see it on main page where list
Very nice, thank's!
What an amazing course - really awsome. I can't seem to get to modal working though (I am using Visual Studio 2022, not VS Code). Nothing happens, when I click the delete-button. Anyone?
Is your component interactive?
@@juliocasal Yes, rendermode is InteractiveServer. Showing modals is actually a recurring problem. Could the browser be the problem, I wonder? Maybe my browser is surpressing popups in some way? Hmmmmm.....
@@juliocasal Yes - I am not even getting the url, when I hoover over the button, like I do on the edit-button. Do I fail to register this in some way, perhaps
@@juliocasal The rendermode is interactiveServer, by the way