#4 List-Details with two templates, automatic view-switching and query
Requirements
Resources
List of Persons
#4 List-Details with two templates, automatic view-switching and query
Source Code of this file
Below you'll see the source code of the file. Note that we're just showing the main part, and hiding some parts of the file which are not relevant for understanding the essentials. Click to expand the code
@inherits Custom.Hybrid.Razor14 @using ToSic.Razor.Blade; @using System.Linq; <!-- unimportant stuff, hidden --> <div @Sys.PageParts.InfoWrapper()> @Html.Partial("../shared/DefaultInfoSection.cshtml") <div @Sys.PageParts.InfoIntro()> <h2>List Details using Automatic View-Switching and Query</h2> <p> The previous examples showed you how to do auto-switch views. This example makes the code even easier, by telling the details-view to pick up the details-item from a query. You can see the query and how it's configured to the right. </p> </div> </div> <h3>List of Persons</h3> <ul> @foreach (var person in AsList(App.Data["Persons"])) { <li> <a href='@Link.To(parameters: "data621id=" + person.EntityId )'> @person.FirstName @person.LastName </a> </li> } </ul> @* Footer *@ @Html.Partial("../Shared/Layout/FooterWithSource.cshtml", new { Sys = Sys })