I can't seem to find any good documentation as to why this behavior is happening. I have a a list view that is using the onneeddatasource functionality. I use this to take care of the paging and sorting functionality of the control.
| <telerik:RadListView AllowNaturalSort="true" ID="RadListView1" runat="server" Skin="Windows7" |
| AllowPaging="True" onneeddatasource="RadListView1_NeedDataSource"> |
and the event handler
| protected void RadListView1_NeedDataSource(object sender, RadListViewNeedDataSourceEventArgs e) |
| { |
| getIAListData(); |
| } |
However, the method getIAListData() get called twice when i step through the code. Why is that? please tell me that this is not a designed behavior or that I will have to override and create custom paging methods.
thanks
Charles