This question is locked. New answers and comments are not allowed.
Ok, day one of trying the grid.
I am trying to start simple. I want to bind the grid to an EF table and show the data. Well, the grid comes up but I get no data.
I'm using MVC3 with the version of Telerik I get from NuGet.
The view is pretty simple:
@{
Html.Telerik().Grid(Model)
.Name("CompanyGrid")
.PrefixUrlParameters(false)
.Pageable()
.Sortable()
.Filterable()
.Render();
}
The index method in the controller is:
public ActionResult Index()
{
return View(_context.TransCommons);
}
The grid shows up, but there is no data in it.
BOb
I am trying to start simple. I want to bind the grid to an EF table and show the data. Well, the grid comes up but I get no data.
I'm using MVC3 with the version of Telerik I get from NuGet.
The view is pretty simple:
@{
Html.Telerik().Grid(Model)
.Name("CompanyGrid")
.PrefixUrlParameters(false)
.Pageable()
.Sortable()
.Filterable()
.Render();
}
The index method in the controller is:
public ActionResult Index()
{
return View(_context.TransCommons);
}
The grid shows up, but there is no data in it.
BOb