MvcContrib.UI.Grid分页问题
我有一个对象,其中包含 IList 中的许多其他对象(称为可能值)。我之前已经成功使用了 mvccontrib 网格加分页,但想将网格添加到对象的页面 - 希望你明白我的意思。所以我在控制器中做了类似的事情:
[AcceptVerbs(HttpVerbs.Get)]
public ViewResult Bla(string Id, int? page)
ViewData["PossibleValues"] = XYZ.PossibleValues.AsPagination(page ?? 1, 10);
PossibleValues 肯定包含数据,但不包含 ViewData["PossibleValues"]。这是因为 AsPagination 依赖于延迟加载还是什么?谢谢。
克里斯
I have an object which contains quite a few other objects in an IList called possible values. I have successfully used the mvccontrib grid plus paging before but would like to add the grid to the object’s page – hope you know what I mean. So I did something like this in my controller:
[AcceptVerbs(HttpVerbs.Get)]
public ViewResult Bla(string Id, int? page)
ViewData["PossibleValues"] = XYZ.PossibleValues.AsPagination(page ?? 1, 10);
PossibleValues definitely contains data but not ViewData["PossibleValues"]. Is this because AsPagination relies on lazy loading or something? Thanks.
Chris
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
刚刚想通了。在控制器中使用:
然后在视图中:
Just figured it out. Use in the controller:
Then in the view: