Unplanned
Last Updated: 31 Mar 2025 09:35 by Martin Ivanov

The horizontal ScrollBar of RadSpreadsheet is missing the bottom border of its track. Additional to that there is a slight offset between the right end of the viewport and the right button of the ScrollBar.

To work this around, set the Margin of the horizontal ScrollBar to 0, and modify its ControlTemplate so that it adds a bottom border for the track's RepeatButton elements.

private void RadSpreadsheet_Loaded(object sender, RoutedEventArgs e)
{
    var spreadsheet = (RadSpreadsheet)sender;
    var scrollBar = spreadsheet.ChildrenOfType<ScrollBar>().FirstOrDefault(x => x.Name == "HorizontalScrollBar");
    scrollBar.Margin = new Thickness(0);
    scrollBar.Template = (ControlTemplate)this.Resources["MyCustomScrollBarTemplate"];
}

In Development
Last Updated: 28 Mar 2025 14:18 by ADMIN
Scheduled for 2025 Q2 (May)
ADMIN
Created by: Martin
Comments: 0
Category: Spreadsheet
Type: Feature Request
5
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.
Duplicated
Last Updated: 20 Feb 2025 16:01 by ADMIN

Improve the load time when the ribbon UI is used.

 

Duplicated
Last Updated: 18 Feb 2025 07:13 by ADMIN
Created by: Dimitar
Comments: 0
Category: Spreadsheet
Type: Feature Request
7
Add support for text orientation (rotation). This is supported in the SpreadProcessing model.
Unplanned
Last Updated: 30 Jan 2025 08:54 by Stenly

For the German language translations, the following resource keys are translated into Dutch instead:

  • Spreadsheet_PrintPreview_FitSheetOnOnePage
  • Spreadsheet_PrintPreview_FitSheetOnOnePage_Description
  • Spreadsheet_PrintPreview_FitColumnsOnOnePage
  • Spreadsheet_PrintPreview_FitColumnsOnOnePage_Description
  • Spreadsheet_PrintPreview_FitRowsOnOnePage
  • Spreadsheet_PrintPreview_FitRowsOnOnePage_Description
Unplanned
Last Updated: 29 Jan 2025 09:17 by Martin Ivanov
Currently, the insert hyperlink dialog displayed on Ctrl+K press in the selected cell (or cell range) allows you to create a link to a webpage page, email address or place in the same document. 

Add a "Create New Document" option that allows you to create a document from the selected cell range, like in the Excel version of the Insert Hyperlink dialog. 
Unplanned
Last Updated: 28 Jan 2025 10:37 by Martin Ivanov
Add the CellIndex or CellRange of the clicked cell in the HyperlinkClicked event arguments (HyperlinkClickedEventArgs).
Unplanned
Last Updated: 28 Jan 2025 10:34 by Martin Ivanov
Currently, the HyperlinkClicked event of RadWorksheetEditor is raised only for external hyperlinks (web and mailto addresses). Raise the event also for links pointing to the a cell in the same document.
Completed
Last Updated: 20 Dec 2024 08:46 by ADMIN
Release 2024.4.1219 (Preview)

The numeric box that allows you to select the "to" page in the PrintPreviewControl is clipped when the "Pages:" and "to" strings are translated to a language where these words are longer. For example, this reproduces with Dutch culture which uses the "Pagina's:" and "naar" texts.

To work this around, you can get the Grid panel that hosts the content and increase the Width of one of its ColumnDefinitions.

  private void PrintPreviewControl_Loaded(object sender, RoutedEventArgs e)
  {
      var printPreview = (PrintPreviewControl)sender;
      var rootGrid = printPreview.FindChildByType<Grid>();
      rootGrid.ColumnDefinitions[0].Width = new GridLength(355);
  }

Completed
Last Updated: 12 Nov 2024 08:17 by ADMIN
Release Telerik UI for WPF 2024.4.1111 (2024 Q4)
ArgumentException when loading document with a FontDize less than 0.01. 
Unplanned
Last Updated: 25 Oct 2024 12:16 by Sasidhar

Add information about the selection in the SelectionChanged event arguments. 

- We need to differentiate from mouse event to keyboard event. But since the EventArgs is empty we are not able to differentiate.

Unplanned
Last Updated: 21 Oct 2024 07:17 by ADMIN
Selectionchanged is firing two times when changing the active worksheet.
Unplanned
Last Updated: 10 Oct 2024 06:07 by ADMIN
When RadSpreadsheet is placed inside a data template and the Workbook property is bound, the binding fails. 

In the Convert() method of the debug converter, the proper value is set. However, an empty workbook is displayed in the view.
Completed
Last Updated: 25 Sep 2024 10:15 by ADMIN
Release 2024.3.924
ADMIN
Created by: Martin
Comments: 0
Category: Spreadsheet
Type: Feature Request
1
Add an event that indicates when a hyperlink is clicked.
Unplanned
Last Updated: 02 Sep 2024 05:20 by Sambhav

Spreadsheet: Add the ability to build formulas using keyboard navigation:

1. Press '=' in a cell. The cell goes into Edit Mode. 
2. Use the Keyboard arrow keys to move in any direction. The Cell reference of the focused cell is automatically entered after the '=' into the cell which is in edit mode.
3. The user can press the Control+Arrow Key to add a reference to an entire row or column of data.
Unplanned
Last Updated: 20 Jun 2024 08:49 by Robby
Add support for digital signature in the XLSX format.
Unplanned
Last Updated: 09 May 2024 07:23 by n/a
Add sheet list that allows activating a sheet similar to Excel.
Unplanned
Last Updated: 26 Apr 2024 11:31 by Robby
Number format not working when the decimal separator is set to comma.
Unplanned
Last Updated: 19 Apr 2024 05:32 by Divya
Vertical and horizontal scroll bar moves too fast once outside of the Viewport and one is dragging the selection.
Unplanned
Last Updated: 09 Apr 2024 13:21 by Divya
 RadSpreadsheetSheetSelector add options for disabling the reordering and the editing of the sheets 
1 2 3 4 5 6