Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Amir Khan 1289 posts 2746 karma points
    Dec 15, 2021 @ 22:22
    Amir Khan
    0

    Pass block type alias to partial

    I have a block editor called Rich Text Editor that lets you choose from a variety of rich text editor combinations, is it possible to read the alias of the block type that was chosen from within the partial?

    Example:

    Main block container:

    var blocks = content.RichTextEditor;
        foreach (var block in blocks)
        {
            var blockType = block.Content.ContentType.Alias;
    
            @Html.Partial("Partials/BlockList/Components/RichTextEditors/" + blockType, block)
        }
    

    Then in my partial I'm currently having to do this, what I'm trying to do is pass "RichTextTwoColumnWideLeft" from the container so I don't have to define it in each partial.

    var block = Model.Content as ContentModels.RichTextTwoColumnWideLeft;
    
  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies