Unplanned
Last Updated: 31 Oct 2018 07:53 by ADMIN
Borders can overhang 1 px from the corresponding cells. The issue is reproducible only on some zoom levels, and is most probably related to WPF layout rounding. The issue is mostly visible when borders are missing. 

On different zoom levels, different borders are hanging.
Unplanned
Last Updated: 31 Oct 2018 07:53 by ADMIN
It would be useful to allow the printer to be chosen directly from the Print Preview control (in the File menu in the ribbon UI). Currently the user should first press Print, and then can choose the printer in the Printer dialog, which is inconvenient.
Unplanned
Last Updated: 31 Oct 2018 07:53 by ADMIN
ArgumentException is thrown ("Error: Argument1" message box in case of importing through RadSpreadsheet) when importing document containing cell with applied custom data validation rule restricting the value of the cell to empty values only - '""' (two double quotes).
Unplanned
Last Updated: 31 Oct 2018 07:53 by ADMIN
Add API for notification when the value in a cell determined by formula is changed. This way the user can find whether by changing a cell value the result of a formula that refers to that cell value is changed.

For example:

A1: 100
A2: 5
A3: =A1+A2

When A2 is changed, the notification should be rise for A3 (as its value is also changed).
Unplanned
Last Updated: 31 Oct 2018 07:53 by ADMIN
When the user clicks in the gray area of the scrollbars, the view could scroll one page at this direction, similar to what MS Excel do. 
Unplanned
Last Updated: 31 Oct 2018 07:53 by ADMIN
ADMIN
Created by: Nikolay Demirev
Comments: 0
Category: Spreadsheet
Type: Feature Request
2
Implement Show Formulas command, which display the formulas in the cells instead of the result value. In MS Excel, this is available in Formulas -> Formula Auditing -> Evaluate Formula.

The keyboard shortcut is "Ctrl + ~".
Completed
Last Updated: 31 Oct 2018 07:53 by ADMIN
The BitmapImage class throws the exception. We could show some kind of no-image-placeholder instead of throwing exception, or skip the image.

Telerik Reporting creates such files.

Attached is a sample project demonstrating how to customize the Open command descriptor to remove .emf images just after importing the document.

Available in R3 2018 Official Release Version.
Unplanned
Last Updated: 31 Oct 2018 07:53 by ADMIN
Steps to reproduce:
- Open RadSpreadsheet
 -Put 1 in B2 and B6
 -Put 0 in B3, B4, B5
 -Add filtering on columns A and B
 -Filter on column B to have only rows with 1. The rows 3 to 5 will be hidden.
 -Paste "1234" as cell selection in the Range A2:A6 
 Note: It is important to enter 1234 in another cell, make a cell selection and then paste it
 -Remove the filter

Expected: "1234" in pasted in cells A2 and A6 only.
Actual: "1234" in pasted in cells A2, A3, A4, A5, A6.
Unplanned
Last Updated: 31 Oct 2018 07:53 by ADMIN
ADMIN
Created by: Anna
Comments: 0
Category: Spreadsheet
Type: Feature Request
3
This is similar to Visual Studio's IntelliSense, but appears while typing formulas in cells on in the FormulaBar.

https://support.office.com/en-us/article/Use-Formula-AutoComplete-6d13daa5-e003-4431-abab-9edef51fae6b
Unplanned
Last Updated: 31 Oct 2018 07:53 by Jayesh
ADMIN
Created by: Nikolay Demirev
Comments: 1
Category: Spreadsheet
Type: Feature Request
7
Grouping is a mechanism to organize data in sections, in order to be able to show and hide the relevant chunks.

Each row or column which is part of a group is assigned an outline level, which determines the level of grouping and from there which rows or columns it is grouped with. 
Unplanned
Last Updated: 31 Oct 2018 07:51 by ADMIN
Created by: Etienne
Comments: 1
Category: Spreadsheet
Type: Feature Request
4
In MS Excel, there is splitter that can be used to manually resize the formula bar. Also there is an arrow button which expands/collapses the formula bar to the last manually resized size. 
Unplanned
Last Updated: 31 Oct 2018 07:51 by Davis
Unplanned
Last Updated: 31 Oct 2018 07:51 by ADMIN
Enable copy-paste of content from and to Excel, preserving all of the applied formatting, styles and images.

Currently, RadSpreadsheet supports only CSV for exchanging clipboard data with Excel, and all formatting (including number formats and data validation) is lost.
Unplanned
Last Updated: 31 Oct 2018 07:51 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: Spreadsheet
Type: Bug Report
10
Check how the performance can be improved in this scenario. The StyleGallery is taking much time to load, the GetUsedCellRange method is called multiple times.
Unplanned
Last Updated: 31 Oct 2018 07:51 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: Spreadsheet
Type: Feature Request
6
Add support for creating Tables and applying tables styles (predefined ones or custom).
Unplanned
Last Updated: 31 Oct 2018 07:51 by Chris
ADMIN
Created by: Petya
Comments: 3
Category: Spreadsheet
Type: Feature Request
11
At this point, the formatting can be applied only to the whole cell content.
Completed
Last Updated: 31 Oct 2018 07:51 by ADMIN
ADMIN
Created by: Deyan
Comments: 5
Category: Spreadsheet
Type: Feature Request
11
This will enable printing with the following printing options: 

- Fit Sheet on One Page

- Fit All Columns on One Page

- Fit All Rows on One Page

- Custom automatic scaling
Completed
Last Updated: 31 Oct 2018 07:50 by ADMIN
ADMIN
Created by: Anna
Comments: 2
Category: Spreadsheet
Type: Feature Request
16
VLOOKUP function is similar to LOOKUP function, which is currently supported.

A list of the supported functions is available at http://docs.telerik.com/devtools/document-processing/libraries/radspreadprocessing/features/formulas/functions

This function can be implemented as a custom function. Check the following resources for more details on how to achieve that:

- http://docs.telerik.com/devtools/document-processing/libraries/radspreadprocessing/features/formulas/custom-functions
- https://github.com/telerik/xaml-sdk/tree/master/Spreadsheet/CustomFunctions

Available in R3 2017 Official Release Version.
Completed
Last Updated: 29 Oct 2018 14:41 by ADMIN
Filter command should be disabled when a single row or cell is selected. 

Fix available in LIB Version 2018.3.1105.
Unplanned
Last Updated: 29 Oct 2018 09:33 by ADMIN
ADMIN
Created by: Martin
Comments: 0
Category: Spreadsheet
Type: Feature Request
1
Returns a Range object that represents the current region. The current region is a range bounded by any combination of blank rows and blank columns. If we want to be consistent with MS Excel we should implement this property. It is useful for many operations of a region such as filtering(selecting one cell and executing the Filter command should apply it to the current region), sorting, selecting all and etc. This document will be useful: https://docs.microsoft.com/en-us/office/vba/api/excel.range.currentregion.