Copied to clipboard

Flag this post as spam?

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


  • wmotr 16 posts 146 karma points
    Mar 17, 2023 @ 11:06
    wmotr
    0

    BlockGridItem custom Controller

    Hi

    I would like to move from DTGE to Umbraco Grid

    But One thing That I loved about DTGE is the ability to use my own class to manage the code outside of the view.

    I am looking for a nice way to use it , with :

    • ability to use DI to import my custom services (external APIs, etc.)

    I will then have to migrate all the data out of DTGE to Umbraco Grid, but that's another story

    Has anyone got an idea for custom controller ?

    Regards !

  • Marc Goodson 2157 posts 14434 karma points MVP 9x c-trib
    Mar 21, 2023 @ 20:36
    Marc Goodson
    0

    Hi wmotr

    Firstly, with Dot Net core... it's totally possible to inject your custom services into views...

    https://docs.umbraco.com/umbraco-cms/implementation/services#using-the-siteservice-inside-a-view

    (I Know MVC is dead etc)

    Otherwise, the BlockGrid doesn't have to use the suggested default way of rendering it

    @await Html.GetBlockGridHtmlAsync(Model, "myGrid")

    It has a strongly typed model called 'BlockGridModel' so you can read it like any other Umbraco property, and manipulate and render how you see fit, perhaps in a ViewComponent, or in a hijacked MVC controller

    https://docs.umbraco.com/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-grid-editor#2.-build-your-own-rendering

    regards

    marc

  • 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