PageBuilderContainers.Kentico.MVC.Core
13.0.3
dotnet add package PageBuilderContainers.Kentico.MVC.Core --version 13.0.3
NuGet\Install-Package PageBuilderContainers.Kentico.MVC.Core -Version 13.0.3
<PackageReference Include="PageBuilderContainers.Kentico.MVC.Core" Version="13.0.3" />
paket add PageBuilderContainers.Kentico.MVC.Core --version 13.0.3
#r "nuget: PageBuilderContainers.Kentico.MVC.Core, 13.0.3"
// Install PageBuilderContainers.Kentico.MVC.Core as a Cake Addin #addin nuget:?package=PageBuilderContainers.Kentico.MVC.Core&version=13.0.3 // Install PageBuilderContainers.Kentico.MVC.Core as a Cake Tool #tool nuget:?package=PageBuilderContainers.Kentico.MVC.Core&version=13.0.3
Page Builder Containers for .Net MVC Core
This tool mimics the older Portal engine "Webpart Containers" which allowed you to wrap your various widgets/webparts in a structured container. These structured containers were managed in the Kentico Admin interface.
This package is for the MVC.Net Core site, you should install PageBuilderContainers.Kentico
on the Admin/mother application before using this.
Installation
- Open your MVC.Net core web app, and install this nuget package.
- In your
_ViewImports.cshtml
file, add@addTagHelper *, PageBuilderContainers.Kentico.MVC.Core
- In your Startup.ConfigureServices, add this implementation:
services.AddSingleton(typeof(IPageBuilderContainerHelper), typeof(PageBuilderContainerHelper));
Usage
In your razor views, use the <containered></containered>
tag as such:
<containered container-name="TestContainer" container-title="Test Title" container-css-class="SomeClass" container-custom-content="Custom Content">TIHS IS THE MIDDLE</containered>
<containered container-name="TestContainer" container-model="Model.ContainerModelItem">This wraps the custom model</containered>
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.1 is compatible. |
-
.NETCoreApp 3.1
- Kentico.Xperience.AspNetCore.WebApp (>= 13.0.0)
- Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.2.0)
- Microsoft.AspNetCore.Razor (>= 2.2.0)
- PageBuilderContainers.Kentico.MVC.Base (>= 13.0.1)
- PageBuilderContainers.Kentico.MVC.Core.Views (>= 13.0.3)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on PageBuilderContainers.Kentico.MVC.Core:
Package | Downloads |
---|---|
BootstrapLayoutTool.PageBuilderContainered.Kentico.MVC.Core
The Bootstrap Layout tool Widget and Form Sections for Bootstrap 4 for Kentico 13 .net Core Refresh 2 (hotfix 31+) with Page Builder Containers support. Must install the PageBuilderContainers.Kentico on the admin to leverage. |
|
XperienceCommunity.Bootstrap5LayoutTool.PageBuilderContainered
The Bootstrap Layout tool Widget and Form Sections for Bootstrap 5 for Kentico 13 .net Core Refresh 2 (hotfix 31+) with Page Builder Containers support. Must install the PageBuilderContainers.Kentico on the admin to leverage. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Updated to include new dependency requirement on Views package, again.