or

Hi.
I have a grid with the nextPrevAndNumeric pager mode.
when i click on one of the page numbers - it works fine.
but when i click on the "prev/next/first/last page" nothing happens, no event is fired.
i went over the forums but didn't find an answer.
thanks in advance
<telerik:GridBoundColumn DataField="Κωδικός Προϊόντος" HeaderText="Κωδικός Προϊόντος"DataFormatString="{0}"DataType="System.String"SortExpression="Κωδικός Προϊόντος"UniqueName="Κωδικός Προϊόντος"><HeaderStyle Width="155px"></HeaderStyle></telerik:GridBoundColumn><telerik:RadMenu ID="RadMenuUserFormsList" runat="server" Skin="Telerik" Style="z-index: 800" OnClientItemClicked="OnClientItemClicked" > <Items> <telerik:RadMenuItem Text="New" Value="NewForm" Enabled="true" PostBack="false" Visible="true" > <Items> </Items> </telerik:RadMenuItem> </Items> <CollapseAnimation Type="None" /> <ExpandAnimation Type="None" /></telerik:RadMenu>private void InitializeMenu(){ var FormTypes = GlobalController.GetFormTypeList(); int i = 1; RadMenuItem NewFormMenu = RadMenuUserFormsList.FindItemByValue("NewForm"); // add menu items FormTypes.ToList<LovItem>().ForEach(delegate(LovItem item) { RadMenuItem MenuItem = new RadMenuItem(); MenuItem.Text = item.Value; MenuItem.Text = i.ToString(); i++; MenuItem.Target = "_blank"; NewFormMenu.Items.Add(MenuItem); });}private void UpdateProgressContext() { const int total = 1200; RadProgressContext progress = RadProgressContext.Current; progress.Speed = "N/A"; for (int i = 0; i < total; i++) { progress.PrimaryTotal = 1; progress.PrimaryValue = 1; progress.PrimaryPercent = 100; progress.SecondaryTotal = total; progress.SecondaryValue = i; int per = (i/total)*100; progress.SecondaryPercent = per; progress.CurrentOperationText = "Step " + i.ToString() + " Per = " + per.ToString(); if (!Response.IsClientConnected) { //Cancel button was clicked or the browser was closed, so stop processing break; } progress.TimeEstimated = (total - i) * 100; //Stall the current thread for 0.1 seconds System.Threading.Thread.Sleep(100); } }