Hi..
I have to show the PageSize Radcombo text as .... Show "RadCombo" per page.
I need to add a label next to the radcombo in Pagercontentcell.I added a label to Pagercontentcell but it is displaying at the bottom of pager.I have to show this next to radcombo .Please help.
This is my code
protected void grdStock_ItemCreated(object sender, Telerik.Web.UI.GridItemEventArgs e)
{
if (e.Item is GridPagerItem)
{
GridPagerItem pagerItem = (GridPagerItem)e.Item;
RadComboBox PageSizeCombo = (RadComboBox)pagerItem.FindControl("PageSizeComboBox");
Label lbPageSize = (Label)e.Item.FindControl("ChangePageSizeLabel");
lbPageSize.Text = "Show";
Label lblPerPage = new Label();
lblPerPage.Text = "per page";
pagerItem.PagerContentCell.Controls.Add(lblPerPage);
}
}
Tiju