Hi
1) I am using telerik following version 2009.1.402.20.I have UI problem in pager style
I have 1050 records in grid. when i set page size is one and i want to see the last page the pager style is overlapping in fire fox
But IE its Wrapping.I have attached two type of screen with this question
2)
I want to limit the maximum page siz using the following code
1) I am using telerik following version 2009.1.402.20.I have UI problem in pager style
I have 1050 records in grid. when i set page size is one and i want to see the last page the pager style is overlapping in fire fox
But IE its Wrapping.I have attached two type of screen with this question
2)
I want to limit the maximum page siz using the following code
protected
void RadGrid1_PreRender(object sender, EventArgs e)
{
GridPagerItem pagerItem = (GridPagerItem)RadGrid1.MasterTableView.GetItems(GridItemType.Pager)[1];
RadNumericTextBox textBox = (RadNumericTextBox)pagerItem.FindControl("ChangePageSizeTextBox");
textBox.MaxValue = 100;
}
the above code is working fine but what my issue is if i have 80 records in grid when i am set page size is 101 and above no chages is happened.but i need its show the 80 records