grid controls for ASP.NET MVC? [closed]

2019-01-02 16:11发布

If you are using ASP.NET MVC how are you doing grid display? Rolled your own? Got a library from somewhere?

These are some of the known grid display solutions I have found for ASP.NET MVC

If you know of anything else that you are using or know to be good, please let me know.

12条回答
梦醉为红颜
2楼-- · 2019-01-02 16:42

Check out the grid from Infragistics jQuery controls

Here is a ASP.NET MVC sample with code:

http://labs.infragistics.com/aspnet-mvc/Grid/AllFeatures

查看更多
大哥的爱人
4楼-- · 2019-01-02 16:49

We have just rolled our own due to limited functionality requirements on our grids. We use some JQuery here and there for some niceties like pagination and that is all we really need.

If you need something a little more fully featured you could check out ExtJs grids here.

Also MvcContrib has a grid implementation that you could check out - try here. Or more specifically here.

查看更多
永恒的永恒
5楼-- · 2019-01-02 16:49

Try: http://mvcjqgridcontrol.codeplex.com/ It's basically a MVC-compliant jQuery Grid wrapper with full .Net support

查看更多
初与友歌
6楼-- · 2019-01-02 16:51

We use Slick Grid in Stack Exchange Data Explorer (example containing 2000 rows).

I found it outperforms jqGrid and flexigrid. It has a very complete feature set and I could not recommend it enough.

Samples of its usage are here.

You can see source samples on how it is integrated to an ASP.NET MVC app here: https://code.google.com/p/stack-exchange-data-explorer/

查看更多
孤独寂梦人
7楼-- · 2019-01-02 16:51

You can use also the Insert/update/delete datagrid of my MVC Controls Toolkit available here on codeplex: http://mvccontrolstoolkit.codeplex.com/. Here you can download a complete example, here the datagrid working and here and here tutorials. The DataGrid works completely client side and mantains thechange set between posts. Yes it mantains Changeset, this means, you can access both old version and modified version of each record to see what changes to pass to the DB(what need to be modified deleted or inserted). This Changeset is mantained after several posts till you either confirm or cancel the modifications on the server side.

查看更多
登录 后发表回答