This question is locked. New answers and comments are not allowed.
i am trying to bind to a grid to a view bag. i got the data back in
any ideas? thanks
ViewBag.SelectNewDataProject.PROJECT_EXT and thats a list.
<
div id="AllProjectGrid" class="ApplicationFontInBlack">
@(
Html.Telerik().Grid(Model)
.Name(
"Grid")
.BindTo(ViewBag.SelectNewDataProject.PROJECT_EXT)
.Groupable()
.Sortable()
.Pageable()
.Filterable()
)
</div>
any ideas? thanks