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
8 Answers, 1 is accepted
Veli
the Telerik team
i dont get any javascript exceptions or errors.
i disabled the ajax settings but no difference.
i dont get any javascript exceptions or errors.
i disabled the ajax settings but no difference.
Consider opening a regular support ticket where you can send us a stripped down runnable project demonstrating your scenario. Thus, we will be able to better understand your scenario and advise you further.
Veli
the Telerik team
by the way, i tried changing the page style mode to Slider
and the same thing happens, i slide to another page, but it jumps back to the first page
perhaps that can help you understand the problem.
my markup code looks like this :
<telerik:RadGrid ID="RadGrid1" runat="server" AlternatingItemStyle-CssClass="TableHeaderAltEng" AccessKeyAllowSorting="True" AllowPaging="True" AutoGenerateColumns="false" PageSize="5" ShowFooter="false" ShowHeader="true" OnItemCommand="RadGrid1_ItemCommand" CssClass ="GridBorders" EnableAJAX="true" EnableViewState ="true" OnPageIndexChanged="RadGrid1_PageIndexChanged" OnNeedDataSource="RadGrid1_NeedDataSource" BorderWidth="0px" AllowMultiRowSelection="true" AllowSorting ="true" GridLines="Both"> <PagerStyle Mode="Slider"/>the PageIndexChanged and NeedDataSource envents do not fire.
Veli
the Telerik team
that's what i did for databinding the grid:
RadGrid1.DataSource = DataTable1
RadGrid1.DataBind()
and you are right, when i erase the RadGrid1.DataBind() it works.
but, i have to write it, because i need it for other things.
so, what can i do to solve this problem?