Falafel Dashboard is a new state-of-the-art dashboard for Sitefinity MVC. Falafel Dashboard can be easily extended by the introduction of custom widgets for the Dashboard. In this column, we are going to create a “Hello World” widget and add it to the Dashboard.
The “Hello World” widget albeit very simple resembles the other widgets that are included out-of-the-box by being a standard Sitefinity MVC widget.
Let us start by creating the “Hello World” MVC widget:
The model:
namespace SitefinityWebApp.Mvc.Areas.HelloWorld.Models
{
public class HelloWorldViewModel
{
public string Message { get; set; }...