Completed
Last Updated: 17 Aug 2018 10:10 by Dimitar
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 10 Aug 2018 10:40
Category: Spreadsheet
Type: Bug Report
1
FIX. RadSpreadsheet - missing row index when scrolling with the mouse wheel
To reproduce: please refer to the attached gif file demonstrating how to replicate the problem with the Demo application. Scroll with the mouse wheel and you will notice the the row index disappears until you click a cell. Using the thumb will behave as expected. 

Workaround:
this.radSpreadsheet1.SpreadsheetElement.VerticalScrollBar.ValueChanged+=VerticalScrollBar_ValueChanged;
        private void VerticalScrollBar_ValueChanged(object sender, EventArgs e)
        {
            this.radSpreadsheet1.SpreadsheetElement.InvalidateMeasure(true);
        }
Attached Files:
0 comments