Skip to main content
Home  › ... Razor

Customize Edit UI/UX

Tutorial HomeCustomize Edit UX

Custom Input Fields


More Information around Customizing the Edit UX

  1. How-To Docs for Custom Input Fields
  2. Specs for Field Customization
  3. Specs for WYSIWYG customization

Source Code of this file

Below you'll see the source code of the file. Note that we're just showing the main part, and hiding some parts of the file which are not relevant for understanding the essentials. Click to expand the code

@using ToSic.Razor.Blade;
@inherits Custom.Hybrid.Razor14
<!-- unimportant stuff, hidden -->


<div @Sys.PageParts.InfoWrapper()>
  @Html.Partial("../shared/DefaultInfoSection.cshtml")
  <div @Sys.PageParts.InfoIntro()>
    <h2>Toolbar Customization</h2>

    <br>
    <h4>More Information around Customizing the Edit UX</h4>
    <ol>



    </ol>
  </div>
</div>

<hr>

<h2>Custom Input Fields</h2>

<br>
<h4>More Information around Customizing the Edit UX</h4>
<ol>



</ol>


@* Footer *@
@Html.Partial("../Shared/Layout/FooterWithSource.cshtml", new { Sys = Sys })