I would like achieve sql like functionality in rad grid,im implemented virtual scrolling but i would like to populate each row in the grid and show the progress of rows affected.i need similar to sql execution.i have attached the image for your reference.
You can use some javascript to implement this scenario. RadGrid already provides a status bar that shows a spinning icon when the grid makes an AJAX requet. As you will be using client-side databinding, the grid won't automatically show this in your case, but we can force it to. We can use 2 grid client events - OnDataBinding and OnDataBound. The first would be used to show the spinning icon and start tracking the elapsed time, while the second would hide the icon and show the elapsed time. Attached is a test page demonstrating this issue.