Unplanned
Last Updated: 28 Nov 2017 14:07 by ADMIN
When a sheet that has a new line in a text value is exported and the resulting file is opened in Excel, the value is displayed without a new line. If you enter edit mode and then exit (without confirming the value by pressing enter) the new line will appear. The reason for this behavior is that when there is a new line in a text value Excel automatically applies wrap text on the cell while RadSpreadsheet does not do that. A possible workaround is to apply wrap text on new values with new line in them.
Unplanned
Last Updated: 25 Sep 2017 05:56 by ADMIN
When a row is removed through code and an image is created immediately after that in the same method, the UI does not update. The change is made in the model, but not visualized. If you scroll up and down the change is reflected in the UI.
Unplanned
Last Updated: 20 Sep 2017 16:08 by ADMIN
When trying to set the VisibleSize property of RadSpreadsheet on the ActiveSheetChanged event a null exception is thrown in the UpdateSheet method of RadSheetEditorBase. 

Possible workaround is to record the visible size at the SheetChanged event and set it at a later time, e.g. using a timer.
Unplanned
Last Updated: 08 Sep 2017 08:32 by ADMIN
Selecting a column with two or more merged cells, selects not only the selected column but the rest of columns that the merged cells are from. The behavior when working with rows is analogical.
Completed
Last Updated: 25 Aug 2017 06:36 by ADMIN
If you begin entering e.g. "=" in FormulaBar, the characters are not visible in dark themes. If the focus is in the cell it works as expected, if the focus is in FormulaBar, the Foreground is dark and cannot be seen on dark background. 

Workaround:
-  set the following style (add BaseOn if using implicit styles)

<Style  TargetType="spreadsheetControls:RadSpreadsheetFormulaBar" BasedOn="{StaticResource RadSpreadsheetFormulaBarStyle}">
            <Setter Property="Foreground" Value="White"/>
</Style>

Available in LIB Version 2017.2.828.
Unplanned
Last Updated: 03 Aug 2017 10:40 by ADMIN
#.##0,00;-#.##0,00;;@ does not work in RadSpreadsheet. It should suppress visualizing of ) values.

Workaround: #.##0,00;-#.##0,00; ;@ works fine (there is ' ' [space] set for the zero values).
Unplanned
Last Updated: 21 Jul 2017 10:35 by ADMIN
Setting the visible size property to a small number, like 10,10, will result in missing the last column right border and last row bottom border.
Unplanned
Last Updated: 09 Jun 2017 08:42 by ADMIN
Unplanned
Last Updated: 15 May 2017 10:38 by ADMIN
NullReferenceException is thrown when the VisibleSize property of RadSpreadsheet is set more than once on two (or more) adjacent lines. For example:

spreadsheet.VisibleSize = new SizeI(1, 1);
spreadsheet.VisibleSize = new SizeI(5, 5);

To work this around you can increase the time between the settings of the VisibleSize property. For example you can use the ActiveSheetEditorChanged event of RadSpreadsheet and the ActivePresenterChanged event of the ActiveWorksheetEditor, and the UIUpdated event of the ActivePresenter. Each time the VisibleSize is changed, the ActiveWorksheetEditor will be recreated along with its ActivePresenter. You should make sure the second, third, etc. setting of the VisibleSize is executed after the new ActivePresenter is loaded. This can be done in the UIUpdated event.
Declined
Last Updated: 14 Mar 2017 09:56 by ADMIN
When a de-DE culture is applied the 1,1 should be parsed as a number. On the other hand the 1.1 (with a dot) should be parsed as 01.Jan. Currently, both values (1,1 and 1.1) are parsed as datetime.

Decline reason: This is reproducible only if the cell was previously formatted as DateTime. In this case the separator is not taken into account which is expected. The same behavior can be observed also in Excel.
Unplanned
Last Updated: 13 Mar 2017 14:19 by ADMIN
When the VisibleSize property of the spreadsheet control is set (for example new SizeI(10, 10)) and column is selected via its header (click on it), the IsColumnSelection property of the ActiveWorksheetEditor's Selection returns False. This applies also for the IsRowSelection property.
Unplanned
Last Updated: 07 Mar 2017 09:26 by ADMIN
If you try to filter a column which contains a cell with applied font color and the project is run in debug mode with enabled C# exceptions, it throws ArgumentException at System.Windows.Media.ColorConverter.ConvertFrom(ITypeDescriptorContext td, CultureInfo ci, Object value). The exception is handled and the functionality is working as expected, however this may be annoying during debugging projects containing RadSpreadsheet.
Declined
Last Updated: 14 Feb 2017 09:19 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: Spreadsheet
Type: Bug Report
0
This item is declined. The visualized border describes the print area.
Unplanned
Last Updated: 09 Feb 2017 09:48 by ADMIN
If you need to set a custom type number format (using Format cell dialog) and enter some additional text in Type TextBox and press Enter key, the changes are not applied.


Steps to reproduce: 

1. Insert some time in a cell in spreadsheet (22:20)

2. Apply it a custom format that contains AM/PM (e.g. "h:mm AM/PM") and press Enter key

Observed: The AM/PM format is missing

Expected: AM or PM should be shown after the time


Workaround: Press OK button or first click somewhere else in order to change the focus
Completed
Last Updated: 17 Aug 2016 08:20 by ADMIN
Clicking the Find All button resizes the dialog to a smaller size and the buttons on the bottom are not visible. Closing the dialog and opening it again opens it with very large size.
No workaround at the moment.
Completed
Last Updated: 08 Aug 2016 11:50 by ADMIN
Completed
Last Updated: 14 Jul 2016 14:59 by ADMIN
When using the OpenFile command to open a document, you should be able to obtain the Name of the workbook in the WorkbookChanged event handler. 
Completed
Last Updated: 12 Jul 2016 14:09 by ADMIN
When a cell's format is set to "Percentage" and then a number is entered, the number's format is incorrect. For example, if "10" is entered in such a cell, the value is visualized as "1000.00%", instead of "10.00%".
Completed
Last Updated: 22 Jun 2016 14:26 by ADMIN