I have a WebDataGrid that I am manually binding to an object data source. Since I'm manually binding to data I have to handle all the grid events that require data binding. This works fine for Filtering and Sorting because they have Events that I can catch and manually bind the data in. This does not appear to be the case when I virtually scroll the grid. When the grid re-loads data it is empty. I can't seem to find any event in the documentation that I can write a handler for that will allow me to rebind the data. I'm using infragistics 4 v. 10.3 and ASP.NET 4.0 in a c# envrironment. Any direction would be appreciated.
Thank you
I figured it out. Finally found the RowsRequested event.
Hello,
Thank you for sharing this in the forums.
Here is more information from the documentation
http://help.infragistics.com/NetAdvantage/ASPNET/2011.1?page=Infragistics4.Web.v11.1~Infragistics.Web.UI.GridControls.VirtualScrolling~RowsRequested_EV.html
WebDataGrid1.Behaviors.VirtualScrolling.RowsRequested += new RowsRequestedHandler(VirtualScrolling_RowsRequested);
void VirtualScrolling_RowsRequested(object sender, VirtualScrollingEventArgs e)
{
// TO DO
}
Let me know if you have further questions.