this.radListView1.ListViewElement.ViewElement.Scroller.ScrollerUpdated += this.Scroller_ScrollerUpdated; private void Scroller_ScrollerUpdated(object sender, EventArgs e){ this.radListView1.ListViewElement.ViewElement.Invalidate();}this.radListView1.ListViewElement.ViewElement.Scroller.ScrollerUpdated += this.Scroller_ScrollerUpdated;private void Scroller_ScrollerUpdated(object sender, EventArgs e){ this.radListView1.ListViewElement.ViewElement.Invalidate();}Dess
This event does not get raised upon scrolling either, I'm just testing with a MessageBox to confirm that the event is actually getting called and it does not.
Thanks
Samantha
I have also updated your Telerik points.
Currently, the possible solution that I can suggest is to detect when the vertical scrollbar is moved and synchronize the visual items:
this.radListView1.ListViewElement.ViewElement.VScrollBar.ValueChanged+=VScrollBar_ValueChanged;
private void VScrollBar_ValueChanged(object sender, EventArgs e){ this.radListView1.ListViewElement.SynchronizeVisualItems();}