@model jQWidgets.AspNet.Core.Models.jQWidgetsDemosContext @using jQWidgets.AspNetCore.Mvc.TagHelpers @{ ViewData["Title"] = "ASP .NET MVC Kanban Example"; Dictionary mappings = new Dictionary(); mappings["Id"] = "id"; mappings["State"] = "status"; mappings["Text"] = "label"; mappings["Label"] = "label"; mappings["Tags"] = "tags"; mappings["Hex"] = "color"; mappings["ResourceId"] = "resourceId"; mappings["Name"] = "name"; mappings["Image"] = "image"; string template = "
" + "
" + "" + "
" + "
" + ""; string templateContent = "{ status: \"new\", text: \"New text\", content: \"New content\", tags: \"New, taggs\", color: \"green\", resourceId: 0, className: \"\"}"; }