How to render the grid html in Umbraco

Posted written by Paul Seal on October 17, 2017 Umbraco

This is a quick post to give you the code for rendering the Grid Html in Umbraco.

If you are using @inherits UmbracoTemplatePage then you can do it like this.

@Html.GetGridHtml(Model.Content, "contentGrid", "Bootstrap3")

If you are using @inherits UmbracoViewPage then you can do it like this

@Html.GetGridHtml(Umbraco.AssignedContentItem, "contentGrid", "Bootstrap3")
  • The first parameter is the IPublishedContent item. Usually the page you are on.
  • The second parameter is the property alias.
  • The third parameter is the name of the grid html view to render it using, normally Bootstrap3.