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: 14 Sep 2016 15:30 by ADMIN
ADMIN
Created by: Anna
Comments: 1
Category: Spreadsheet
Type: Feature Request
20

			
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
Declined
Last Updated: 08 Aug 2016 09:43 by ADMIN
ADMIN
Created by: Nikolay Demirev
Comments: 1
Category: Spreadsheet
Type: Feature Request
0
Add support for preserving and exporting the macros in a macro-enabled workbook.
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
Declined
Last Updated: 10 Jun 2016 10:51 by ADMIN
ADMIN
Created by: Nikolay Demirev
Comments: 0
Category: Spreadsheet
Type: Feature Request
0
The item is duplicated. Please, find the approved public item at http://feedback.telerik.com/Project/143/Feedback/Details/145412
Completed
Last Updated: 02 Jun 2016 10:22 by ADMIN
When a workbook with a number of worksheets larger than a certain count is saved an out of memory exception is thrown. The necessary number of worksheets depends on the file and the machine, but it ranges between 70-90.
Declined
Last Updated: 27 Apr 2016 12:46 by ADMIN
ADMIN
Created by: Tanya
Comments: 1
Category: Spreadsheet
Type: Feature Request
0
Currently, only Workbook/Worksheet could be protected. Would be nice to expose a way to protect cells for scenarios in which only particular cells should be locked for modifications.
Completed
Last Updated: 14 Dec 2015 13:11 by Paul-Henri
Created by: Paul-Henri
Comments: 0
Category: Spreadsheet
Type: Feature Request
2
The feature will be available in our official release Q1 2016.
Completed
Last Updated: 14 Dec 2015 13:09 by ADMIN
The formula expressions are invalidated by the formula arguments only. Which means that the formula expression will be invalidated only if some of its arguments is invalidated. But formulas like Indirect returns cell reference ranges. If something in the preferred range is changed the result have to update for which invalidation of the formula expression is needed.