什么是柔性网格?
在 .net 中,我们使用称为 datagrid 的东西,还有我们称为 flexigrid 的东西。 之间有什么区别?
in .net we use something called datagrid and there is what we call flexigrid .
what is the difference in between ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Flexigrid
特征
Flexigrid
Features
FlexiGrid 在客户端上生成(使用 JavaScript),而 ASP.NET GridView/DataGrid 在服务器上生成。 FlexiGrid 还具有 @phoenix 所描述的许多功能
FlexiGrid is generated on the client (using JavaScript) and the ASP.NET GridView/DataGrid is generated on the server. The FlexiGrid also has a number of features as described by @phoenix
这两个控件(flexigrid 和 datagrid)都用于向 Web 应用程序的用户呈现数据。
它们之间的主要区别在于,数据网格为了转到下一页,需要对该页面发出完整请求。
另一方面,Flexigrid 只获取下一页的数据,而不是整个页面。
Flexigrid 还提供一些客户端“好东西”,例如显示/隐藏列、调整列大小等。
如果您正在寻找 Flexigrid 的 ASP.NET 实现,请查看 http://www.flexigrid-asp .net
Both controls, flexigrid and datagrid, are ment to present data to the user of your web application.
Major difference between them is that the datagrid, in order to go to the next page, makes a full request for the page.
Flexigrid, on the other hand, gets only the next page of data, not the entire page.
There's also some client-side "goodies" with flexigrid, like showing/hiding columns, resizing columns and such.
If you're looking for a ASP.NET implementation of flexigrid, have a look at http://www.flexigrid-asp.net