I work for an IT shop that doesn't have budget to pay for controls. Is there an open source alternative to telerik grid for mvc? I would like a rich datagrids for my pages.
- 1you can take look this link for 12 opensource mvc grid controls dotnetspan.com/2014/12/…Bhavik Patel– Bhavik Patel2014-12-12 03:15:52 +00:00Commented Dec 12, 2014 at 3:15
- 1I can recommend github.com/mcintyre321/mvc.jquery.datatables :Dmcintyre321– mcintyre3212016-07-26 08:43:26 +00:00Commented Jul 26, 2016 at 8:43
- 2mvc-grid.azurewebsites.netjuFo– juFo2016-12-01 10:28:25 +00:00Commented Dec 1, 2016 at 10:28
3 Answers
There's also the MVCContrib.Grid that you might take a look at.
And if you are looking for a pure client side grid, there are gazillions of them like jqGrid, FuelUX datagrid, ...
1 Comment
Grid.MVC is an open source and working Grid with sorting and paging
(and unlike telerik you do not need to change anything on controller side just add reference in your view and use.)
To install nugget package (Install)
PM> Install-Package Grid.Mvc -Version 3.0.0 In your view you can auto-create columns as below (or customize see User Guide)
@using GridMvc.Html @Html.Grid(Model).AutoGenerateColumns() See Online Demo
1 Comment
Have a look at Mvc Contrib Grid. I've had good experience using this.
Another option is Webgrid. Source is availabe in Sourceforge