Team,
Can anybody let me know if how can I set my paging to the right alignment in the RadGrid. Currently with this code below the grid is not diaplsying the pager with right alignment.
in Code-Behind i wrote
Thanks
Vijay
Can anybody let me know if how can I set my paging to the right alignment in the RadGrid. Currently with this code below the grid is not diaplsying the pager with right alignment.
in Code-Behind i wrote
this.RadGrid1.MasterTableView.PagerStyle.AlwaysVisible = true;
this.RadGrid1.MasterTableView.PagerStyle.ShowPagerText = false;
this.RadGrid1.MasterTableView.PagerStyle.HorizontalAlign = HorizontalAlign.Center;
this.RadGrid1.MasterTableView.PagerStyle.PrevPageText = "Previous";
this.RadGrid1.MasterTableView.PagerStyle.NextPageText = "Next";
this.RadGrid1.MasterTableView.PagerStyle.Mode = Telerik.Web.UI.GridPagerMode.NextPrevAndNumeric;
Thanks
Vijay