Completed
Last Updated: 10 Jul 2024 11:20 by ADMIN
Release R1 2021 SP2

I have implemented the ListDataValidationRule code to add a dropdownlist to the spreadsheet. Based on the code I can find and the searching I have conducted, it seems to be correct, however the dropdown does not appear in the control.

The dropdown list does appear in Excel when I export the file.

 

Dim Context As ListDataValidationRuleContext = New ListDataValidationRuleContext(CurrentWorksheet, CurrentCellIndex)

Context.InputMessageTitle = "Restricted input"
Context.InputMessageContent = "The input is restricted to the week days."
Context.ErrorStyle = ErrorStyle.Stop
Context.ErrorAlertTitle = "Invalid Bedroom Type"
Context.ErrorAlertContent = "The entered value is not valid."
Context.InCellDropdown = True

Context.Argument1 = String.Join(",", _Data.ArchitectCert_UnitBedrooms.AsEnumerable().Select(Function(x) x.Field(Of Integer)("UnitBedroomNumber").ToString()).ToArray())


Dim Rule As ListDataValidationRule = New ListDataValidationRule(Context)

CurrentWorksheet.Cells(CurrentCellIndex).SetDataValidationRule(Rule)
In Development
Last Updated: 03 Jul 2024 11:26 by ADMIN
Scheduled for 2024 Q3 (August)
ADMIN
Created by: Hristo
Comments: 0
Category: Spreadsheet
Type: Feature Request
2

			
Unplanned
Last Updated: 12 Jun 2024 08:17 by Ken
If you type =sum( and leave it at that, then go into the column and start pressing Shift+click to start selecting a range, it throws an error. 
Unplanned
Last Updated: 17 May 2024 12:30 by ADMIN
Unplanned
Last Updated: 15 May 2024 13:26 by ADMIN
Created by: TestTeam
Comments: 7
Category: Spreadsheet
Type: Bug Report
1
The behavior can be reproduced when the zoom of the control is changed and we try to enter a value in a cell.
Unplanned
Last Updated: 07 Mar 2024 14:27 by Walter
Created by: Walter
Comments: 0
Category: Spreadsheet
Type: Feature Request
0
Add axis titles to the charts
Unplanned
Last Updated: 07 Mar 2024 14:09 by Walter
Created by: Walter
Comments: 0
Category: Spreadsheet
Type: Feature Request
0
Editable chart in RadSpreadsheet
Unplanned
Last Updated: 01 Feb 2024 08:09 by ADMIN

When the text is set using the following code, the text in a wrapped cell is overlapping.

radSpreadSheet1.ActiveWorksheet.Cells[0, 0].SetValue(@"Blocked flow; potential increase in level in  (BLANK); potential to overfill equipment; potential spill or overflow to (BLANK) 
Blocked flow; potential increase in level in  (BLANK); 
potential to overfill equipment; potential spill or overflow to(BLANK)");
radSpreadSheet1.ActiveWorksheet.Columns[0].SetWidth(new ColumnWidth(300, true));
Worksheet worksheet = radSpreadSheet1.ActiveWorksheet as Worksheet;
CellStyle cellStyle = worksheet.Workbook.Styles.Add("Wrap Style", CellStyleCategory.Custom);
cellStyle.IsWrapped = true;
CellRange cr = new CellRange(0, 0, 10, 10);
worksheet.Cells[cr].SetStyleName("Wrap Style");

 

Completed
Last Updated: 31 Jan 2024 11:39 by ADMIN
Release 2024 Q1 (2024.1.130)
NullReferenceException is raised when loading document with charts.
Unplanned
Last Updated: 25 Jan 2024 08:45 by ADMIN
Setting the worksheet to protected does not prevent the user from changing the name of the worksheet. 
Unplanned
Last Updated: 25 Jan 2024 08:06 by ADMIN
This exception will be thrown when the control zoom setting is changed and we drag a selection rectangle outside of the worksheet.
Unplanned
Last Updated: 09 Oct 2023 11:11 by ADMIN
Users want to save the workbook via the Save ribbon button, but they want a default filename in the save dialog (not "book1.xlsx"). 
Unplanned
Last Updated: 27 Sep 2023 12:54 by ADMIN
Created by: Louis
Comments: 1
Category: Spreadsheet
Type: Feature Request
0

Currently, the WinForms Spreadsheet doesn't have separators between the column headers:

It would be better to have separators for the headers like the WPF Spreadsheet:

Duplicated
Last Updated: 27 Sep 2023 08:01 by ADMIN
Created by: Dinko
Comments: 1
Category: Spreadsheet
Type: Feature Request
0
Implement support for Comments functionality in the Spreadsheet.
Unplanned
Last Updated: 01 Sep 2023 09:25 by ADMIN
Unplanned
Last Updated: 29 Aug 2023 11:51 by ADMIN
Duplicated
Last Updated: 14 Jul 2023 09:31 by ADMIN
Created by: n/a
Comments: 1
Category: Spreadsheet
Type: Feature Request
0

Please add radSpreadsheet RTL support in windows version of Telerik.

Today we testing last trial version , and we see this option inside the component properties , but its not working.

Thank You.

Unplanned
Last Updated: 27 Jun 2023 05:01 by ADMIN
Unplanned
Last Updated: 06 Jun 2023 07:28 by ADMIN

Please refer to the attached gif file.

Completed
Last Updated: 08 May 2023 14:41 by ADMIN
Release R2 2023
Exception in the ValueContextResolver when importing a document that contains conditional formatting.
1 2 3 4 5 6