Sample: All properties widget designer

Overview

This sample widget demonstrates how all types of properties are displayed in the widget designers. The properties are defined in the Entity class
For more information, see Autogenerated field types.

Extensibility

The sample also demonstrates how to add a field that is dynamically populated with choice options from an external data source.
This is done in the following way:
  1. Declare a custom Attribute and decorate the properties of your Entity class
  2. Declare a custom IPropertyConfigurator that fetches the values from the external data source and passes them along to the metadata of the property.
  3. Register your IPropertyConfigurator with the DI framework as demonstarted in the Program.cs class, using:
    builder.Services.AddSingleton<IPropertyConfigurator, ExternalChoicePropertyConfigurator>();

PREREQUISITES: You must set up a Sitefinity renderer application and connect it to your Sitefinity CMS application. For more information, see Install Sitefinity in ASP.NET Core mode.

NOTE: The instructions in this sample use Visual Studio 2022 and a Sitefinity renderer project named Renderer.

Folder structure

Under your Renderer project, you must create the following folders:

  • Extensibility
  • Entities/AllProperties
  • ViewComponents
  • Views/Shared/Components/AllProperties

Create the widget

  • In the context menu of folder Entities/AllProperties, click Add » Class…
  • In Name, enter AllPropertiesEntity.cs and click Add.
  • In the class, paste the following code and save your changes:

  • In the context menu of folder ViewComponents, click Add » Class…
  • In Name, enter AllPropertiesViewComponent.cs and click Add.
  • In the class, paste the following code and save your changes:

  • In the context menu of folder Views/Shared/Components/AllProperties, click Add » Class…
  • Select Code File.
  • In Name, enter Default.cshtml and click Add.
  • In the class, paste the following code and save your changes:

Implement the extensibility

  • In the context menu of folder Extensibility, click Add » Class…
  • In Name, enter ExternalDataChoiceAttribute.cs and click Add.
  • In the class, paste the following code and save your changes:

  • In the context menu of folder Extensibility, click Add » Class…
  • In Name, enter ExternalChoicePropertyConfigurator.cs and click Add.
  • In the class, paste the following code and save your changes:

Register the custom IPropertyConfigurator

You must register the ExternalChoicePropertyConfigurator class in the Program.cs.

The Program.cs file should look in the following way:

Build your solution.

Result

When you open your Renderer application and open the New editor, you will see the AllProperties widget in the widget selector. When you add the widget on your page and edit it, you can see a list of all types of fields, which you can configure.

AllProperties

Run the sample

This sample is available in Sitefinity’s GitHub repository. You can run and play with it.
To do this, perform the following:

  1. Go to Sitefinity’s GitHub repository Sitefinity ASP.NET Core samples.
  2. Expand Code and click Download ZIP.
  3. Extract the files on your computer.
  4. In the extracted folder, navigate to sitefinity-aspnetcore-mvc-samples-master/src/all-properties folder.
  5. Open the all-properties.sln in Visual Studio.
  6. Open the appsettings.json file.
  7. In section “Sitefinity”, change the “Url” property to the URL of your Sitefinity CMS site.
    If you have deployed Sitefinity CMS on the IIS, point to “https://localhost:<https_port>".
  8. In Visual Studio, in the context menu of all-properties project, click View in Browser.
  9. Log in to your Sitefinity CMS instance and place the widget on a page.

Increase your Sitefinity skills by signing up for our free trainings. Get Sitefinity-certified at Progress Education Community to boost your credentials.

Get started with Integration Hub | Sitefinity Cloud | Sitefinity SaaS

This free lesson teaches administrators, marketers, and other business professionals how to use the Integration hub service to create automated workflows between Sitefinity and other business systems.

Web Security for Sitefinity Administrators

This free lesson teaches administrators the basics about protecting yor Sitefinity instance and its sites from external threats. Configure HTTPS, SSL, allow lists for trusted sites, and cookie security, among others.

Foundations of Sitefinity ASP.NET Core Development

The free on-demand video course teaches developers how to use Sitefinity .NET Core and leverage its decoupled architecture and new way of coding against the platform.

Was this article helpful?

Next article

Sample: Mega menu