Open source alternatives to telerik grid for asp.net mvc? [closed]

眉间皱痕 提交于 2019-12-20 08:31:05

问题


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.


回答1:


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, ...




回答2:


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




回答3:


Have a look at Mvc Contrib Grid. I've had good experience using this.

Another option is Webgrid. Source is availabe in Sourceforge



来源:https://stackoverflow.com/questions/15744826/open-source-alternatives-to-telerik-grid-for-asp-net-mvc

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!