vote up 0 vote down star

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

flag

Ollie, Consider retagging this. It is a GridView on the ASP.NET side and a DataGridView on the Windows side. – Rap Jun 30 at 10:41
Isn't this normal behaviour? When you don't need paging why the pager? – TheVillageIdiot Jun 30 at 10:45

2 Answers

vote up 1 vote down check

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:

protected void grid_DataBound(object sender, EventArgs e)
{
    grid.TopPagerRow.Visible = true;
}
link|flag
thanks for the fast response ;) another greater 'feature' design... – AWC Jun 30 at 10:43
vote up 0 vote down

When the number of pages is one, there is no need to show Next/Previous or other pages. Sounds like normal behavior to me.

link|flag
it's no good if I want to dynamically change the number of rows displayed by a drop down in the pager... But there again I shouldn't really allow the user to change the number of rows displayed in the pager that's just a stupid requirement... – AWC Jun 30 at 10:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.