This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Page Language="c#" CodeBehind="MoveCategories.aspx.cs" AutoEventWireup="False" Inherits="AlloyDemoKit.AddOns.MoveCategories.MoveCategories" Title="Move Categories" %> | |
<%@ Register TagPrefix="EPiServerUI" Namespace="EPiServer.UI.WebControls" Assembly="EPiServer.UI, Version=11.23.0.0, Culture=neutral, PublicKeyToken=8fe83dea738b45b7" %> | |
<asp:content contentplaceholderid="MainRegion" runat="server"> | |
<asp:Panel runat="server" CssClass="EP-systemMessage" ID="errorPanel" Visible="false"> | |
<asp:Literal runat="server" ID="errorText" /> | |
</asp:Panel> | |
<div class="epi-formArea epi-paddingVertical-small"> | |
<div class="epi-size15"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.markdown-editor { | |
width: 580px; | |
font-family: Verdana, Arial; | |
} | |
.markdown-editor .editor-toolbar { | |
border-top-left-radius: 0; | |
border-top-right-radius: 0; | |
border: 2px solid #b2b9c1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Page Language="c#" EnableViewState="true" CodeBehind="MissingProperties.aspx.cs" AutoEventWireup="False" Inherits="EPiServer.Reference.Commerce.Site.Plugins.MissingProperties" Title="Missing Properties" %> | |
<%@ Register TagPrefix="EPiServerUI" Namespace="EPiServer.UI.WebControls" Assembly="EPiServer.UI, Version=11.21.4.0, Culture=neutral, PublicKeyToken=8fe83dea738b45b7" %> | |
<asp:content contentplaceholderid="MainRegion" runat="server"> | |
<div class="epi-formArea" ID="Pagetypes" runat="server"> | |
<div class="epi-size25"> | |
<div> | |
<asp:GridView ItemType="EPiServer.Reference.Commerce.Site.Plugins.MissingProperties.Result" ID="PropertiesViewControl" runat="server" AutoGenerateColumns="false" > | |
<Columns> | |
<asp:TemplateField HeaderText="Type" ItemStyle-Wrap="false"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
using System.Net; | |
using System.Text; | |
using EPiServer.Find; | |
using EPiServer.Find.Api; | |
using EPiServer.Find.Connection; | |
using EPiServer.Find.Helpers; | |
using EPiServer.Find.Json; | |
using Newtonsoft.Json.Linq; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using AlloyDemoKit.FindReport.Client.Entities; | |
using EPiServer.Find; | |
using EPiServer.ServiceLocation; | |
using WebGrease.Css.Extensions; | |
namespace AlloyDemoKit.FindReport.Client | |
{ |