asp.net GridView Pager 消失了!
我有一个使用分页的 datagridview,它工作得很好,并且我有一个下拉菜单,允许用户更改“PageSize”属性 - 10、15、25、50、100、1000 等。
当我选择一个值时大于网格行数的 PageSize 寻呼机从顶部和底部消失 网格的底部。
有人知道为什么吗?
我在 aspx 页面中使用自定义 PageTemplate 元素。
干杯
奥利
I have a datagridview that is using paging, it works perfectly fine and I have a drop down that allows the user to change the 'PageSize' property - 10, 15, 25, 50, 100, 1000 etc.
When I select a value for the PageSize that is greater than the row count for the grid the Pager is disappearing from both the top & bottom of the grid.
Anyone got any ideas why?
I'm using a custom PageTemplate element in the aspx page.
Cheers
Ollie
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
行为是设计使然的。 您可以通过在网格的 OnDataBound 事件中设置分页器行的 Visible 属性(使用 TopPagerRow 或 BottomPagerRow 属性访问)来强制其保持可见。 例如:
Behaviour is by design. You can force it to remain visible by setting the Visible property of the pager row (accessed using either TopPagerRow or BottomPagerRow property) in the grid's OnDataBound event. For example:
我发现如果您试图强制列不可见,就会发生这种情况。
例如,如果您使用:
e.Row.Cells[0].Visible = false;
您可以使寻呼机呈现为不可见。
您应该使用以下代码:
if (e.Row.RowType == DataControlRowType.DataRow || e.Row.RowType == DataControlRowType.Header)
{
e.Row.Cells[0].Visible = false;
}
I found that this happens if you are trying to force a column to be invisible.
for example if you use:
e.Row.Cells[0].Visible = false;
You can cause the pager to render invisible.
You should use this code instead:
if (e.Row.RowType == DataControlRowType.DataRow || e.Row.RowType == DataControlRowType.Header)
{
e.Row.Cells[0].Visible = false;
}
当页数为一页时,无需显示下一页/上一页或其他页。 对我来说听起来像是正常行为。
When the number of pages is one, there is no need to show Next/Previous or other pages. Sounds like normal behavior to me.
该问题与设计有关,因此请转到 Rad Grid View 的属性并更改属性:Style-->PagerStyle-->AlwaysVisible To (True)
the Issue is Related to Design so Please Go to The Properties of Rad Grid View and Just Change The Property : Style-->PagerStyle-->AlwaysVisible To (True)
验证 GridView.VirtualItemCount
有时更新数据源后该值会不同。
例如:第一次 => 100 并在下次为同一数据库查询设置不同的值。
http://www.nullskull.com/articles/20060109.asp
Verify the GridView.VirtualItemCount
Sometimes after update DataSource this value is not the same.
For Exemple: First time => 100 and in the next time you set a different value to the same database query.
http://www.nullskull.com/articles/20060109.asp