Hi,
I have a problem with the expansion of the last row.
After Row Expanding and Row Collapsing the last or second last row, the last row is not visible because it seems that there I some kind of lock on the scrollbar : it doesn’t scroll down neither with the mouse wheel nor with the button so it is not possible to move on the last row.
If instead you scroll up and then down the row became visible again.
In the attached example project.
Regards
I have also updated your Telerik points.
Currently, the possible solution that I can suggest is to force scrolling in order to update the vertical scrollbar's range when a row is collapsed:
private
void
radVirtualGrid1_RowCollapsed(
object
sender, Telerik.WinControls.UI.VirtualGridRowExpandedEventArgs e)
{
var value =
this
.radVirtualGrid1.TableElement.VScrollBar.Value;
this
.radVirtualGrid1.TableElement.VScrollBar.Value = 0;
this
.radVirtualGrid1.TableElement.VScrollBar.Value = value;
}