列表视图项目索引
我使用的是每页 6 个项目的列表视图。当我从 6 个项目中选择一个项目时,它应该将我带到每页 3 个项目的页面,但所选项目(在上一页上)作为新页面列表中的第一个项目。基本上如何设置哪些项目首先显示在列表视图中?那是财产吗?
I am using a listview with 6 items per page. When I choose an item from the 6 items it should take me to a page with 3 items per page BUT the selected item (on previous page) as FIRST item in the list on the new page. Basically how do I set which items shows first in the listview? Is that a property?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有用于设置第一项的属性。如果您使用数据源,则项目将按照它们在数据源中出现的顺序显示,这通常是数据库返回它们的顺序。
如果您需要不同的顺序,您可以通过数据源编写循环并手动将项目分配给 ListView。
There is no property for setting the first item. If you are using a datasource, the items will be displayed in the order they occur in the datasource, which is generally the order that the database returns them.
If you need a different ordering, you can code a loop through your datasource and assign the items to the ListView manually.