Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Browsing our code in Visual Studio and I see this line in a view:
@Html.GetGridHtml(Model, "nameOfGrid"),
How do I see the code for the grid being rendered here? Is that in the back office somewhere?
Hi Joseph
You can find the grid rendering razor view in Views/Partials/Grid/bootstrap3.cshtml
Views/Partials/Grid/bootstrap3.cshtml
Not quite what I meant. I want to edit the style of a specific element in a grid. To accomplish that I want to add an ID to the element and some CSS. How do I get to that code?
If you look in the bootsrap3 grid template you will see how it renders. You should be able to parse the output there
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
@Html.GetGridHtml(Model, "nameOfGrid"), where do I see the HTML and JavaScript for the grid?
Browsing our code in Visual Studio and I see this line in a view:
@Html.GetGridHtml(Model, "nameOfGrid"),
How do I see the code for the grid being rendered here? Is that in the back office somewhere?
Hi Joseph
You can find the grid rendering razor view in
Views/Partials/Grid/bootstrap3.cshtml
Not quite what I meant. I want to edit the style of a specific element in a grid. To accomplish that I want to add an ID to the element and some CSS. How do I get to that code?
If you look in the bootsrap3 grid template you will see how it renders. You should be able to parse the output there
is working on a reply...