PartialWidgetPage.Kentico.MVC 13.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package PartialWidgetPage.Kentico.MVC --version 13.0.1
NuGet\Install-Package PartialWidgetPage.Kentico.MVC -Version 13.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PartialWidgetPage.Kentico.MVC" Version="13.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PartialWidgetPage.Kentico.MVC --version 13.0.1
#r "nuget: PartialWidgetPage.Kentico.MVC, 13.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install PartialWidgetPage.Kentico.MVC as a Cake Addin
#addin nuget:?package=PartialWidgetPage.Kentico.MVC&version=13.0.1

// Install PartialWidgetPage.Kentico.MVC as a Cake Tool
#tool nuget:?package=PartialWidgetPage.Kentico.MVC&version=13.0.1

Partial Widget Page

For Kentico 13 .net 4.8 only. Allows you to render widget pages within other pages either server side or client side. See Project site for full documentation.

Installation [.Net Full Framework]

  1. Install the [PartialWidgetPage.Kentico.MVC] Nuget Package on your .net 4.8 MVC Site.
  2. Register your dependency injections for the IPartialWidgetPageHelper and IPartialWidgetRenderingRetriever (you'll have to supply your own implementation of IPartialWidgetRenderingRetriever), make sure that these are registered for both the main project assembly and the Partial Widget Assembly. Here's what was in my ApplicationConfig.RegisterFeatures:
            // Register AutoFac Items
            var autofacBuilder = new ContainerBuilder();

            autofacBuilder.RegisterType<PartialWidgetPageHelper>().As<IPartialWidgetPageHelper>();
            autofacBuilder.RegisterType<CustomPartialWidgetRenderingRetriever>().As<IPartialWidgetRenderingRetriever>();

            // Register Dependencies for Cache, pass in any assemblies you wish to hook up
            DependencyResolverConfig.Register(autofacBuilder, new Assembly[] { typeof(ApplicationConfig).Assembly, typeof(PartialWidgetPageHelper).Assembly });

            // Set Autofac Dependency resolver to the builder
            DependencyResolver.SetResolver(new AutofacDependencyResolver(autofacBuilder.Build()));

  1. Consider adding <add namespace="PartialWidgetPage"/> to the web.config in your Views to get the Html helper extensions
  2. Allow the widget with code name PartialWidgetPage.PartialWidget into any zones with a specified widget list.
Product Compatible and additional computed target framework versions.
.NET Framework net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
13.0.3 6,254 12/19/2020
13.0.2 1,242 12/18/2020
13.0.1 1,188 12/15/2020
12.29.9 2,322 10/2/2020
12.29.8 503 9/2/2020
12.29.7 777 6/17/2020
12.29.6 512 6/17/2020
12.29.5 553 6/15/2020
12.29.4 2,453 10/10/2019
12.29.3 706 9/20/2019
12.29.2 680 8/9/2019
12.29.1 618 8/8/2019
12.0.0.1 583 7/15/2019
12.0.0 592 7/15/2019