PartialWidgetPage.Kentico.MVC.Core
13.0.2
See the version list below for details.
dotnet add package PartialWidgetPage.Kentico.MVC.Core --version 13.0.2
NuGet\Install-Package PartialWidgetPage.Kentico.MVC.Core -Version 13.0.2
<PackageReference Include="PartialWidgetPage.Kentico.MVC.Core" Version="13.0.2" />
paket add PartialWidgetPage.Kentico.MVC.Core --version 13.0.2
#r "nuget: PartialWidgetPage.Kentico.MVC.Core, 13.0.2"
// Install PartialWidgetPage.Kentico.MVC.Core as a Cake Addin #addin nuget:?package=PartialWidgetPage.Kentico.MVC.Core&version=13.0.2 // Install PartialWidgetPage.Kentico.MVC.Core as a Cake Tool #tool nuget:?package=PartialWidgetPage.Kentico.MVC.Core&version=13.0.2
Partial Widget Page
This tool allows you to render out a Widget (Page Builder) Page as a Partial.
Installation
Install the Nuget Package on your .net Core site.
Add this TagHelper to your View or _ViewImport.cshtml
@addTagHelper *, PartialWidgetPage.Kentico.MVC.Core
You may also want to add a Using for the PartialWidgetPage namespace
@using PartialWidgetPage
Usage
See the Repository's Readme for full usage. Here are some sample tag helpers:
<inlinewidgetpage initialize-document-prior="true" documentid="123" >
@await Component.InvokeAsync("ShareableContentComponent", new { Testing = "Hello" })
</inlinewidgetpage>
<inlinewidgetpage initialize-document-prior="true" page=@Model.Page >
@await Component.InvokeAsync("ShareableContentComponent", new { Testing = "Hello" })
</inlinewidgetpage>
<inlinewidgetpage initialize-document-prior="false">
@await Component.InvokeAsync("SomeComponentThatInitializesDoc", new { DocumentID = 123 })
</inlinewidgetpage>
<ajaxwidgetpage relative-url="/Custom/CustomResponse" />
<ajaxwidgetpage documentid="123" />
<ajaxwidgetpage page=@Model.MyTreeNode />
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.Http.Abstractions (>= 2.2.0)
- Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.2.0)
- Microsoft.AspNetCore.Razor (>= 2.2.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on PartialWidgetPage.Kentico.MVC.Core:
Package | Downloads |
---|---|
PartialWidgetPage.Kentico.MVC.Core.Widget
For Kentico 13 .net Core only, this is the widget that leverages the PartialWidgetPage.Kentico.MVC.Core libraries, allowing you to render pages through a widget |
|
XperienceCommunity.Baseline.Navigation.RCL.KX13
The Baseline a set of Core Systems, Tools, and Structure to ensure a superior Kentico Website that's easy to migrate, for Kentico Xperience 13 and eventually Xperience by Kentico |
|
XperienceCommunity.Baseline.TabbedPages.RCL.KX13
The Baseline a set of Core Systems, Tools, and Structure to ensure a superior Kentico Website that's easy to migrate, for Kentico Xperience 13 and eventually Xperience by Kentico |
GitHub repositories
This package is not used by any popular GitHub repositories.
Fixed bug where the IPageBuilderFeature would get set to "EditMode = false" even if the Page Builder's Data Context it was True, this cause incorrect behavior when using the Kentico().PageBuilder().EditMode for toggling after called.