Unplanned
Last Updated: 16 Jun 2023 10:23 by ADMIN
Scrolling performance in large spreadsheets is significantly worse when auto filters are enabled.
Unplanned
Last Updated: 24 Aug 2017 15:37 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 0
Category: Spreadsheet
Type: Bug Report
0
A workaround which can be used for the moment is to traverse the TextFragment elements in the affected pages and set their Clipping to null:

foreach (ContentElementBase element in page.Content)
{
    TextFragment text = element as TextFragment;
    if (text != null) text.Clipping = null;
}
Unplanned
Last Updated: 08 Aug 2017 14:29 by ADMIN
Error: "We found a problem with this formula. Try clicking Insert Function on the Formulas tab to fix it." appears on the screen when a user tries to:
1. Selects a cell.
2. Inserts Sum formula from the ribbon menu by following Formula --> Auto Sum --> Sum.
3. Selects Range.
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
If RadSpreadsheet is shown in RadWindow or in Popup, Filtering dialog throws NullReferenceException.