🚀C# Progress Academy - Become a senior C# developer: academy.tutorials.eu/p/csharp-progress-academy
@andread47212 жыл бұрын
Two questions: When will it start? Will you fill my mailbox with tons of spam?
@MrTonyradford6 ай бұрын
Thanks for this - it's a very useful technique and saves passing the partial model data into the view.
@ВиталийАрдашов2 жыл бұрын
Let me ask you a question. Why didn't you use @await Html.Partial Async("_BlogArticles", blogentries)
@tutorialsEUC2 жыл бұрын
Hi, thanks for adding that nice helper function. Your way definately works too but from my side of experience in MVC most stuff (especially when it comes to datatable etc.) gets rendered (even partial views) by using the jquery approach to manage when stuff is loaded. My approach allows you to run code after the partial view has loaded (and you will do that alot!). Greets, Jannick :-)
@MariwanHSАй бұрын
can we use it for layout page as well?
@acatij6 ай бұрын
Can we load a partialView with different data, example for home 6 articles and for archivo only 2?
@dyaaCoding Жыл бұрын
can this be done in Razor pages . I have a model i created a scaffold from. I now have a folder in my Pages called Categories and it has Create, Index ,delete, details cshtml and cshtml.cs. i want my main Pages/Index.cshtml to render the Pages/Categories/Index.Cshtml in my main Index. While maintaining the ability to press the create button and actually add a new iterm.
@dinoma20958 ай бұрын
Hi, im working on my own project with View transitions API, has someone combined partialViews with it?, Good video by the way.
@acatij6 ай бұрын
Can this be used to create some common controls, like a dropdwons that are used multiple times over a proyect?
@MrTonyradford6 ай бұрын
I think this approach could be used for any control in a partial, if you pass the data formatted correctly into the partial.
@hannahbandana88 Жыл бұрын
I cant find the link too the asp net 5 day challenge?
@EldhoLikesIt2 ай бұрын
Thanks
@woquendoG2 жыл бұрын
hi, how to remove that partial?
@siddhantpanda54552 жыл бұрын
Is it possible to render in cstml insted of scripts tag
@damianjankov33432 жыл бұрын
Very nicely explained, thank you!
@tutorialsEUC2 жыл бұрын
sure thing!
@harrynewman17442 жыл бұрын
Also for me this method returns error 500
@abc-hl1pw2 жыл бұрын
Greeat video thanks
@stijntempelaere87722 жыл бұрын
I was just wondering if you need to repeat the script part in every page you want to render the partial view? Is it possible to create a class instead and place it in the js file?
@FromRootsToRadicals_INTP11 ай бұрын
It depends on your setup. Normally you want to consolidate scripts to the view they are needed. If you placed it outside then it would always be rendered without the partial. If you have multiple partials on one view that are all the same then obviously dont do that. You could then place in a render tag at the parent view when needed.
@FromRootsToRadicals_INTP11 ай бұрын
But for scope purposes we like to place scripts of partial inside the partial.
@binodsharma112 Жыл бұрын
Nice, explain , I prefer using HTMX in partial .
@tanoryjakaperdana14196 ай бұрын
how?
@tanoryjakaperdana1419 Жыл бұрын
So its jquery
@gollumei Жыл бұрын
This is exactly why React is the best framework, so much easier than this mess.