<telerik:RadDropDownTree ID="RadDropDownTree3" Runat="server" Label="Parent Budget Group:" ></telerik:RadDropDownTree>



Hello,
I face a issue with pagesize change event of RadGrid. This event is called two times when a user clicks on "Change" link.
I have set AllowPaging="True", AllowCustomPaging="True", PagerStyle-Mode="NextPrevNumericAndAdvanced"
properties of Radgrid related to paging.
In code I have following events...
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not Page.IsPostBack Then
BindGrid()
End If
End Sub
Private Sub BindGrid()
'''' grid binding code here using datasource as datatable
dt = .....
If dt.Rows.Count > 0 Then
rGridSubscriptions.VirtualItemCount = dt.Rows(0).Item("total_rows")
Else
rGridSubscriptions.VirtualItemCount = 0
End If
End Sub
Private Sub rGridSubscriptions_PageSizeChanged(ByVal source As Object, ByVal e As Telerik.Web.UI.GridPageSizeChangedEventArgs) Handles rGridSubscriptions.PageSizeChanged
ViewState("maxRows") = e.NewPageSize
BindGrid()
End Sub
This PageSizeChanged is called twice when "Change" link is clicked and hence Bindgrid is called twice. I am using Telerik's Q2 2008 version.
Please if anyone can solve this issue it would be of greate help.
Thanks in advance
Sups