Skip to content

OrchardCore.DisplayManagement

This article is about Display management and placement files.

Placement files

Any module or theme can contain an optional placement.json file providing custom placement logic.

Note

The placement.json file must be added at the root of a module or a theme.

Format

A placement.json file contains an object whose properties are shape types. Each of these properties is an array of placement rules.

In the following example, we describe the placement for the TextField and Parts_Contents_Publish shapes.

{
  "TextField": [ ... ],
  "Parts_Contents_Publish" : [ ... ]
}

A placement rule contains two sets of data:

  • Filters - defines what specific shapes are targeted.
  • Placement information - the placement information to apply when the filter is matched.

Currently you can filter shapes by:

  • Their original type, which is the property name of the placement rule, like TextField or ContentPart.
  • displayType (Optional): The display type, like Summary and Detail for the most common ones.
  • differentiator (Optional): The differentiator which is used to distinguish shape types that are reused for multiple elements, like field names.

Note

Shape type (placement.json property name) DOES NOT necessarily align with with your part type. For instance, if you created a Content Part GalleryPart without a part driver, your shape type will be ContentPart with differentiator GalleryPart. So your placement.json would look like

{
  "ContentPart": [{
  "place":"SomeZone",
  "differentiator":"GalleryPart"
  }],
  "GalleryPart": [{...}] //this wont work unless you registered a driver for the part
}

Additional custom filter providers can be added by implementing IPlacementNodeFilterProvider.

For shapes that are built from a content item, you can filter by the following built in filter providers:

  • contentType (Optional): A single ContentType or Stereotype, or an array of ContentTypes and / or Stereotypes that the content item from which the shape was built should match. * maybe used to match all content types starting with the preceding value, i.e. Art*.
  • contentPart (Optional): A single ContentPart or an of array of ContentParts that the content item from which the shape was built should contain.
  • path (Optional): A single path or an of array of paths that should match the request path.

Placement information consists of:

  • place (Optional): The actual location of the shape in the rendered zone. A value of - will hide the shape, and a value starting with / will move the shape to a layout zone.
  • alternates (Optional): An array of alternate shape types to add to the current shape's metadata.
  • wrappers (Optional): An array of shape types to use as wrappers for the current shape.
  • shape (Optional): A substitution shape type.

Position format

The place value follows the format Zone:Position, where:

  • Zone is the target zone name (e.g., Content, Parts).
  • Position is an optional numeric value that determines the ordering of shapes within the zone.

Examples:

Place Value Zone Position Description
Content Content (empty, treated as 0) Places in Content zone at default position
Content:5 Content 5 Places in Content zone at position 5
Content:5.1 Content 5.1 Places in Content zone at position 5.1 (between 5 and 6)
Content:before Content before Places at the very beginning of the zone
Content:after Content after Places at the very end of the zone
Position ordering rules

Shapes within a zone are sorted by their position using these rules:

  • Positions are compared numerically, not alphabetically (e.g., 2 comes before 10).
  • Dot notation is supported for sub-positioning: 1.1 comes after 1 but before 2. Positions like 1.5 can be used to insert shapes between 1 and 2.
  • The special keyword before places a shape before all numbered positions (internally mapped to -9999).
  • The special keyword after places a shape after all numbered positions (internally mapped to 9999).
  • A shape with no position (empty string) is treated as position 0.
  • When multiple shapes share the same position, they maintain their registration order (stable sort).

The full ordering is: before, 0 (empty), 1, 1.1, 1.2, 2, 10, then after.

Note

Position ordering within a zone is determined solely by the position value. The module or project name does not affect the order of shapes within a zone.

{
  "TextField": [
    {
      "displayType": "Detail",
      "differentiator": "Article-MyTextField",
      "contentType": [ "Page", "BlogPost" ],
      "contentPart": [ "HtmlBodyPart" ],
      "path": [ "/mypage" ],
      "place": "Content",
      "alternates": [ "TextField_Title" ],
      "wrappers": [ "TextField_Title" ],
      "shape": "AnotherShape"
    }
  ]
}

Placement precedence

The placement info chosen for a shape is based on the following order:

  1. The main startup project (This can act as a super theme)
  2. Active theme (This will be the active front end theme if you're viewing the front end, or the active admin theme if you're viewing the admin)
  3. Modules (Ordered by dependencies)

Placing Fields

Fields have a custom differentiator as their shape is used in many places.
It is built using the Part it's contained in, and the name of the Field.
For instance, if a field named MyField would be added to an Article content type, its differentiator would be Article-MyField.
If a field named City was added to an Address part then its differentiator would be Address-City.

Field Display Modes

The placement rules are stricter for non-standard display modes.

  1. The shape type must include _Display. For example TextField_Display.
  2. You must use the full differentiator defined as [PartType]-[FieldName]-[FieldType]_Display__[DisplayMode]. For a text field named MyField on the Content Type Blog the differentiator is Blog-MyField-TextField_Display__Header.
{
  "TextField_Display": [
    {
      "place": "Content:1",
      "differentiator": "Blog-MyField-TextField_Display__Header"
    }
  ]
}

Shape differentiators

You can find information about shape differentiators in the Templates documentation

Editor shape placement

Editor shapes support grouping placement, which allows you to group editor shapes, to create a variety of content editor layouts.

Supported groupings

  • Tabs
  • Cards
  • Columns

Each grouping works by itself, or can be progressive, so Tabs can support Cards, and / or Columns, and Cards can support Columns.

Groupings are created by applying a modifier and a group name.

Modifiers

  • The Tabs modifier is #
  • The Cards modifier is %
  • The Columns modifier is |

Each of these modifiers support a position modifier for the group, in the format ; and Columns support an additional modifier for the column width, of _.

To apply a position modifier, or column width modifier, apply the appropriate value to every group name.

Fields or Parts which do not have a grouping will fall into the default Content group when other fields apply a grouping.

Shape position vs. group position

The position (the number after :) controls the order of shapes within a zone. The group position (the number after ;) controls the order of the groups themselves (e.g., which tab appears first). These are two different things.

For example, in Parts:2#Settings;1:

  • :2 → The shape renders at position 2 within the zone (after shapes at position 1).
  • #Settings;1 → The Settings tab is ordered at group position 1 among other tabs.

If multiple shapes share the same position value (e.g., all use :1), their order will depend on module registration order, which may not be predictable. Always use distinct positions for shapes that need a specific order within a zone.

Examples

In the following example we place the MediaField_Edit shape in a tab called Media, and position the Media tab first, and the Content tab second.

{
    "MediaField_Edit" : [
        {
            "place" : "Parts:0#Media;0",
            "contentType": [
                "Article"
            ]
        }
    ],
    "HtmlField_Edit" : [
        {
            "place": "Parts:0#Content;1",
            "contentType": [
                "Article"
            ]
        }

    ]
}

In the following example we place the MediaField_Edit shape in a card called Media, and position the Media card first, and the Content card second.

{
    "MediaField_Edit" : [
        {
            "place" : "Parts:0%Media;0",
            "contentType": [
                "Article"
            ]
        }
    ],
    "HtmlField_Edit" : [
        {
            "place": "Parts:0%Content;1",
            "contentType": [
                "Article"
            ]
        }

    ]
}

In the following example we place the MediaField_Edit shape in a column called Media, and position the Media column first, and the Content column second. We also specify that the Content column will take 9 columns, of the default 12 column grid.

{
    "MediaField_Edit" : [
        {
            "place" : "Parts:0|Media;0",
            "contentType": [
                "Article"
            ]
        }
    ],
    "HtmlField_Edit" : [
        {
            "place": "Parts:0|Content_9;1",
            "contentType": [
                "Article"
            ]
        }

    ]
}

Note

By default the columns will break responsively at the md breakpoint, and a modifier will be parsed to col-md-9. If you want to change the breakpoint, you could also specify Content_lg-9, which is parsed to col-lg-9.

Dynamic part placement

In the following example we place a dynamic part (part without driver, i.e. created in json) GalleryPart in a zone called MyGalleryZone. When displaying that part inside Content template we would execute:

=== Content-Product.Detail.html

@await DisplayAsync(Model.MyGalleryZone)

Dynamic parts use ContentPart shape for detail display with differentiator of Part name, so the placement file would look like this:

{
  "ContentPart": [
    {
      "place": "MyGalleryZone",
      "differentiator": "GalleryPart"
    }
  ]
}

This setup would then show your template (e.g. GalleryPart.cshtml or GalleryPart.Detail.cshtml) where DisplayAsync was called.

If we would like to show the same part in a summary display content template (or any other that isn't Detail display type):

=== Content-Product.Summary.html

@await DisplayAsync(Model.MyGalleryZone)

Our placement would look like this (note the _Summary suffix to ContentPart name; change your suffix accordingly):

{
  "ContentPart_Summary": [
    {
      "place": "MyGalleryZone",
      "differentiator": "GalleryPart"
    }
  ]
}

This setup would then show your template (e.g. GalleryPart.cshtml or GalleryPart.Summary.cshtml) where DisplayAsync was called.

Fluent Location API

When setting placement locations in display drivers, you can use the PlacementLocationBuilder fluent API as an alternative to manually constructing location strings. This makes the placement intent more explicit and reduces mistakes.

The builder enforces the nesting hierarchy through the rendering order (Zone → Tab → Card → Column), using a single fluent PlacementLocationBuilder class where all methods return the same instance for easy chaining.

String syntax vs. Fluent API

// String syntax (traditional):
.Location("Parameters:5#Settings;1")

// Fluent API (equivalent):
.Location(l => l.Zone("Parameters", "5").Tab("Settings", "1"))

Available methods

The builder starts with .Zone() and all methods return the same PlacementLocationBuilder instance for fluent chaining:

Method Description String equivalent
.Zone("Content", "5") Sets the target zone and shape position (required) Content:5
.AsLayoutZone() Targets a layout zone / prefix
.Tab("Settings", "1") Groups into a tab with optional group position #Settings;1
.Card("Details", "2") Groups into a card with optional group position %Details;2
.Column("Left", "1", "9") Groups into a column with position and width \|Left_9;1
.Group("search") Assigns a group identifier for filtering @search

Note

The .Column() method parameters are: name, position, width. For example, .Column("Left", "1", "9") creates a column named "Left" at position 1 with width 9.

Methods can be called in any order after .Zone(). Levels can be skipped (e.g., .Zone().Card() without a .Tab() is valid).

Examples

Place a shape at position 5 in the Content zone:

.Location(l => l.Zone("Content", "5"))
// Produces: "Content:5"

Place a shape in a tab:

.Location(l => l.Zone("Parameters", "1").Tab("Settings", "1"))
// Produces: "Parameters:1#Settings;1"

Full nesting — zone → tab → card → column:

.Location(l => l
    .Zone("Parameters", "5")
    .Tab("Settings", "1")
    .Card("Details", "2")
    .Column("Left", "3", "9"))
    // Produces: "Parameters:5#Settings;1%Details;2|Left_9;3"

Place a shape in a column with a width (skipping tab and card):

.Location(l => l.Zone("Parts", "0").Column("Content", "1", "9"))
    // Produces: "Parts:0|Content_9;1"

Place a shape in a layout zone:

.Location(l => l.Zone("Content", "5").AsLayoutZone())
// Produces: "/Content:5"

Set location per display type:

.Location("Summary", l => l.Zone("Content", "1"))
// Produces: "Content:1" for the "Summary" display type

Videos