We have gone through feedback about UI virtualzation in Telerik grdiview but cant cant find solution for below approach
We have gridview in which we are loading data but We are facing issues in enable/disable Cell or Focus cell at any row of GridView.
Visualization is set to ON and we are using below code to get all rows of gridview
var rows = RadGridView1.ChildrenOfType<GridViewRow>();
this code is returning only those set of rows which are visible in viewport
Those rows that are visible in the view port are initialized and can be access to cell which are visible in view port .however problem occurs with remaining rows which are not visible in View Port. when We tried to access rows with are not visible in view port but loaded in Radgrdiview , then it throws error "Index was out of range. Must be non-negative and less than the size of the collection.\r\nParameter name: index"
Is there any way through which we can access all rows . so that i can enable or disable any cell of RadGrdiView?
We don't want to disable Visualization, that will impact on performance of RadGridView.