17 Oct 2017
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")