.NET MAUI - Detect Memory Leaks
3:20
Blazor CheckBox: Get Started
3:26
Blazor Button: Get Started
3:03
5 ай бұрын
Blazor Text Box: Get Started
3:39
Пікірлер
@draganvelickovski3809
@draganvelickovski3809 4 күн бұрын
Excellent, can you show us sample with Static Server Rendering?
@TonyEdwardsPZ
@TonyEdwardsPZ 6 күн бұрын
Thank you for this video, and for the matching writeup in the repository.
@dexatur7366
@dexatur7366 7 күн бұрын
you guys are lacking tutorial on the end-user report deisgner
@onigvd77
@onigvd77 9 күн бұрын
Thank you for this one Carl, I will be upgrading at least one project to 9 soon :)
10 күн бұрын
Its year 2024 still nobody knows how to set the Image Upload Folder :)
@DrWinklerr
@DrWinklerr 14 күн бұрын
EXTREMELY late comment, but I'll ask anyway: Is there a way to keep server pre-rendering and also force a reload? In my use case (I know everyone is different and I fully understand if you disagree) I value the pre-render performance over having users reload on updates; however, ideally we can have our cake and eat it too. To add, is anyone aware of performance metrics between the different render modes for production applications? I know big-O can be irrelevant for small n, so I wonder if prod actually sees a noticeable performance hit.
@rianconsultinginc9742
@rianconsultinginc9742 22 күн бұрын
Can this feature be added to AspNet.Core C# projects?
@maickolhernandez5683
@maickolhernandez5683 23 күн бұрын
Excellent - Can you share the git repo?
@DeveloperExpress
@DeveloperExpress 20 күн бұрын
Sure. github.com/DevExpress-Examples/blazor-reporting-ai-summarize-and-translate github.com/DevExpress-Examples/web-reporting-integrate-ai-assistant
@hafizattaulmohamin.k1893
@hafizattaulmohamin.k1893 25 күн бұрын
@codermallu
@codermallu 28 күн бұрын
After implement this, the user circuit handler make problems (always show auto reconnect ). dotnet.8. (Fixed: remove the cookie when we add or remove properties, works)
@SystemServer
@SystemServer 29 күн бұрын
What about for XAF 😎?
@abrrrakadabrrra
@abrrrakadabrrra 29 күн бұрын
what about custom auth based on external user management db?
@PanelProfesional
@PanelProfesional Ай бұрын
It would be great (powerful), if you can integrate AI in order to generate code and blazor apps with a prompt..
@susanchaniago
@susanchaniago Ай бұрын
is this available for current framework?
@MartinWidmer_OGDeveloper
@MartinWidmer_OGDeveloper Ай бұрын
Shouldn't you call the Load method in the BeginEdit as well, to ensure the data is not stale, when working in a distributed environment with multiple users?
@debeerpaul
@debeerpaul Ай бұрын
Anyone using this in production?
@cissemy
@cissemy Ай бұрын
Can we get the source code ? Thanks
@cissemy
@cissemy Ай бұрын
Is it possible to add devexpress components to an existing Blazor SSR(no interactivity) ?
@rguifa
@rguifa Ай бұрын
I followed the tutorial and everything works as seen here, except for one thing. When I add a task to a project, the project field is empty. The tutorial shows the project is there a soon as the task window pops up. I can select the project, but since I'm creating the task from the project, it should be selected automatically. What am I doing wrong?
@osamasallam0
@osamasallam0 Ай бұрын
Can i save a locations with Local database using maps ?
@starhackvicky1823
@starhackvicky1823 Ай бұрын
hi i have one doubt if are using cardview specific column header filter showing is it possible not all datasource column in header filter
@mohammadmamaghaniyan3206
@mohammadmamaghaniyan3206 Ай бұрын
good job
@brianwambua6891
@brianwambua6891 Ай бұрын
If I am to use Laravel as my server side how would I go about it?
@torrvic1156
@torrvic1156 Ай бұрын
Thank you so much for your awesome videos, Mr. Franklin! Hopefully you are doing good. I see tears in your eyes 😢I don’t know but I am almost crying watching this video. This video was very helpful because it was not easy for me to figure out how to dockerize Blazor Wasm application.
@embosystems124
@embosystems124 2 ай бұрын
Thank you
@10Totti
@10Totti 2 ай бұрын
Great tutorial thanks!
@freethinker6056
@freethinker6056 2 ай бұрын
Hi Carl, great video! Is there is a way to dynamically add nodes to the NavMenu based on the pages in the Razor Class Library DLL(s) that have been dynamically loaded? Can you use AuthorizeView in conjunction to render this NavMenu depending on various role claims?
@carlfranklin7894
@carlfranklin7894 2 ай бұрын
Hmmm... you could make the NavMenu an RCL and update it dynamically also...
@TinNguyenThanh-ko6pi
@TinNguyenThanh-ko6pi 2 ай бұрын
i don't know how resize picture , can you help me ????
@abidmehmoods
@abidmehmoods 2 ай бұрын
Hi Thanks for the videos. They are very helpful and have helped us enormously while developing a Maui Blazor App. Could you make a video on the best way to load images from ios/android devices on to a blazor page? Everything I found in documentation for maui blazor was not comparable in performance compared to Maui. A workaround I implemented was to overlay maui controls on top of the blazor component. But this is obviously not a solution.
@carlfranklin
@carlfranklin 2 ай бұрын
When you say "Everything I found in documentation for maui blazor was not comparable in performance compared to MAUI" where is this in the documentation? What are they comparing? Uploading? Have you tested it each way to see if the difference in performance is tolerable? For me, using Blazor on MAUI makes development so much easier and resilient to change.
@abidmehmoods
@abidmehmoods 2 ай бұрын
​@@carlfranklin Thank you for the quick reply. Documentation was the wrong word... I meant everything I found online on how I could access photos from device and display it on a page. This is what I meant by perfomance not being comparable: I have rechecked my code and found that the problem I had is only limited to IOS. In Maui we can use the platform specific libraries to get the images and convert them into a list of ImageSource which can be bound to a collectionview. I have tried this and both retrieving the images from the device (android and ios) and displaying it in a collectionview was instant. However in blazor, the the element 'img' expects a filepath, which is fine for android but in ios the native library does not give access to the filepath. So we had to save the files locally in a known folder and use those filepaths, which we found to be very slow. Or perhaps I have gone in a completely wrong direction and missed something simple. I would be thankfull for any information on this topic.
@carlfranklin
@carlfranklin 2 ай бұрын
@@abidmehmoods Typically, the way images work on a phone is that the user must select the images locally, and then the app will "upload" them, or put them in some place managed by the app itself.
@DuskoJovic
@DuskoJovic 2 ай бұрын
Hi there, if I use SQLite database do I need to instal nuGet package Microsoft.SQLite...?
@pankitpatel1987
@pankitpatel1987 2 ай бұрын
Why does Microsoft not support this NuGet package in Blazor 8? I thought you were a trusted partner for Blazor and third-party component selection. I trust you because your videos usually provide valuable insights, but now I'm stuck with this NuGet package.
@carlfranklin
@carlfranklin 2 ай бұрын
I'm not sure what you mean? I use Blazored.Modal in .NET 8. However, there is a problem using CascadingParameters in .NET 8 when you use per page/component interactivity. See episodes 102 and 103. - Carl
@CodingHaribo
@CodingHaribo 2 ай бұрын
Whenever I see a try..catch without anything in the catch, that tells me something has gone wrong.
@DickeyLindsay-l4l
@DickeyLindsay-l4l 2 ай бұрын
Millie Station
@Gabor-jn9zc
@Gabor-jn9zc 2 ай бұрын
What if you don't have Azure?
@RobbiSwager-e6z
@RobbiSwager-e6z 2 ай бұрын
Gerald Burgs
@emirhancnar2176
@emirhancnar2176 2 ай бұрын
Thank you. It was very helpul.
@KateaMartin-p4u
@KateaMartin-p4u 2 ай бұрын
Parisian Way
@RussellColombo
@RussellColombo 2 ай бұрын
Awesome tutorial Carl. Do you have any plans to expand Avn Library to include buffer playback ?
@milciadesmarrocchi8737
@milciadesmarrocchi8737 2 ай бұрын
Hi Carl, on the server example, it seems that this works only if you persist session vars into storage. If you don't do that, then since the CascadingAppState component gets reinitialized on a page refresh, the global vars are reinitialized and we are back to the beggining. Am I missing something?
@DeveloperExpress
@DeveloperExpress 2 ай бұрын
This issue is addressed in episodes 102 and 103. The quick fix is to use Global mode instead of Per Page/Component mode. 102 kzbin.infoSyA2m9Oo76k 103 kzbin.info/www/bejne/ioKYqGWOZ797bpo
@johnpena3691
@johnpena3691 2 ай бұрын
Excellent video. Can you please create a new video for the Web Assembly Standalone project? In our company, we have a DevExpress license and we will use Blazor WASM Standalone project + DevExpress
@kaylahuber2795
@kaylahuber2795 3 ай бұрын
Can you reuse the same model between Maui and the Blazor app in a shared class library?
@MarcScheuner
@MarcScheuner 3 ай бұрын
Carl - instead of having a separate interface IAppState (and a class implementing it) - couldn't we just exclude those properties we don't want to save with [JsonIgnore] and serialize the CascadingAppState class like that?
@markevans7066
@markevans7066 3 ай бұрын
Works like a charm Carl. Thanks a lot!!!!!
@markevans7066
@markevans7066 3 ай бұрын
Thank you so much Carl. This is a massive help!!!
@M7829-f7q
@M7829-f7q 3 ай бұрын
Two things. First, thanks for the greatly detailed explanation. Secondly, I really appreciate when people zoom in on the code which makes it much easier for me to read.
@markevans7066
@markevans7066 3 ай бұрын
Wow thank you so much Carl!! I've been stuck on this problem for a long time. Asking questions on Stack Overflow, looking at endless pages of doco. There's so many different options, outdated information, and it's a bloody massive waste of time. I followed your tutorial and downloaded your code and now I have a lovely, working example to build on. Why the hell can't Microsoft manage this? Now I can get on to actually writing my application code. The next task is to get Facebook & Google authentication working and also implement this in Blazor. I've been listening to your podcasts from the beginning around 2000. You got my career started and you are still helping me so much. You're a very smart guy and also an amazing teacher. DotNet really does rock! Great work!
@rangerdue-t1l
@rangerdue-t1l 3 ай бұрын
Thanks for this video. It's very basic, though. I have a simple scenario where I want to put tabs on the left. It works fine, except that I want to change the width on hover over. Everything else I want the same. This is simple except that there isn't a way to do it without using TabTemplates. Once you use tab templates, all of the other templates stop working because you programatically add a :not for the dxbl-tabs-tmpl. In effect, I have to redo everything to get this little effect I wanted. I am frustrated by your support too. We have support, but when I put stuff down, I can never get ahold of anyone. It seems to me that there should be more effort put into creating several more complex examples instead of these simple ones if you are not going to invest in support callbacks.