Unplanned
Last Updated: 27 Dec 2024 06:41 by Naval
Nested tables with empty cells are not correctly imported. 
Unplanned
Last Updated: 26 Dec 2024 10:44 by Martin Ivanov

When the TitleBarVisibility is Collapsed, the backstage close button is aligned with the top of the backstage adorner. The button should have a top margin applied. 
This reproduces when the BackstagePosition property of RadRibbonBackstage is set to Office2013, which is the default setting of newer Telerik themes.

To work this around, get the backstage close button and set its top margin.

 private void RadRibbonBackstage_Loaded(object sender, RoutedEventArgs e)
 {
     var backstage = (RadRibbonBackstage)sender;
     var closeButton = backstage.FindChildByType<RadRibbonButton>();
     closeButton.Margin = new Thickness(closeButton.Margin.Left, 15, closeButton.Margin.Right, closeButton.Margin.Bottom);
 }

Unplanned
Last Updated: 25 Dec 2024 10:22 by Stenly
When the layout of the RadRichTextBox control is set to Flow, inserting an image (with Text Wrapping set to Behind Text) into a black document and moving it, can cause its content to not be displayed.
Under Review
Last Updated: 24 Dec 2024 09:43 by ADMIN
Created by: Romain
Comments: 1
Category: UI for WPF
Type: Feature Request
0

Hi,

it would be convenient to add an extra small font size to te existing enumerations. For instance in Windows 11 theme, could it be possible to add a XS size:

Windows11Palette.Palette.FontSizeXS = 10;
Windows11Palette.Palette.FontSizeS = 12; 
Windows11Palette.Palette.FontSize = 14; 
Windows11Palette.Palette.FontSizeM = 18; 
Windows11Palette.Palette.FontSizeL = 20; 
Windows11Palette.Palette.FontSizeXL = 28; 

Having a range in the bigger font sizes is very useful. It owuld be equally helpful to have a range on the smaller font.

Thank you for considering it :)

Unplanned
Last Updated: 24 Dec 2024 09:38 by Stenly
Created by: Stenly
Comments: 0
Category: ComboBox
Type: Feature Request
0
Currently, the RadComboBox provides support for single or multiple selections. We can add an Extended selection mode similar to the one present in the RadListBox control.
Unplanned
Last Updated: 23 Dec 2024 11:47 by Martin Ivanov
Add option to enable indent guides (vertical lines) between the code lines in the SyntaxEditor. 
Completed
Last Updated: 20 Dec 2024 08:55 by ADMIN
Release 2024.4.1219 (Preview)
Created by: n/a
Comments: 7
Category: PDFViewer
Type: Bug Report
3

Some lines on attached files are to thick. Other pdf programs shows that correctly. 

Regards
Janez

In Development
Last Updated: 20 Dec 2024 08:46 by ADMIN
Scheduled for 2025 Q1 (February)

When using the RadToggleSwitchButton and the CheckedContent and UncheckedContent properties are not utilized, in some themes, the on and off states cannot be correctly distinguished. For example, the track or the thumb does not indicate whether the button is checked or not.

Themes, in which this is present are the following ones:

  • Material
  • Office2013
  • Windows8 and Windows8Touch
  • OfficeBlack, OfficeBlue, and OfficeSilver 
In Development
Last Updated: 20 Dec 2024 08:46 by ADMIN
Scheduled for 2025 Q1 (February)
Some colors are changed due to incorrect import of some graphic state colors.
In Development
Last Updated: 20 Dec 2024 08:46 by ADMIN
Scheduled for 2025 Q1 (February)
The GridViewCheckBox element is not affected by the compact mode of the Windows 11 theme.
Completed
Last Updated: 20 Dec 2024 08:46 by ADMIN
Release 2024.4.1219 (Preview)
IOException while exporting the document to byte array(PDF)
Completed
Last Updated: 20 Dec 2024 08:46 by ADMIN
Release 2024.4.1219 (Preview)
Currently, for some of the newer themes, such as Windows 11, the expand/collapse icon and tooltip are incorrect.
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: 20 Dec 2024 08:46 by ADMIN
Release 2024.4.1219 (Preview)

In the scenario where the Fluent theme is applied and the MonthViewDefinition'sAllowCustomAppointmentSize property is set to True, appointments with different heights may overlap the expand/collapse RadToggleButton when collapsed.

To work this around, extract the default GroupHeaderStyleSelector for the Fluent theme. Then, extract the Style with x:Key="MonthViewBottomLevelWeekGroupStyle" and modify the Padding property's value. Set this Style to the MonthViewBottomLevelWeekGroupStyle property of the extracted OrientedGroupHeaderStyleSelector (default GroupHeaderStyleSelector). Finally, set an instance of the modified style selector to the GroupHeaderStyleSelector property of RadScheduleView.

Completed
Last Updated: 20 Dec 2024 08:46 by ADMIN
Release 2024.4.1219 (Preview)
Created by: Martin Ivanov
Comments: 0
Category: RichTextBox
Type: Bug Report
1

Using the SpreadStreamExport feature of RadGridView doesn't work as expected when exporting DateTime objects. It exports the dates as String values which prevents the date-related features (like formatting) to work in Excel. 

To work this around, you can create a custom SpreadStreamExportRenderer and override its SetCellValue method. This will allow you to manually provide the DateTime object instead of the string.

  public class MyRenderer : SpreadStreamExportRenderer
  {
      public override void SetCellValue(DataType dataType, object value)
      {
          DateTime date;
          if (value != null && DateTime.TryParse(value.ToString(), out date))
          {
              base.SetCellValue(DataType.DateTime, date);
              var cell = this.GetCell() as ICellExporter;
              cell.SetFormat(new SpreadCellFormat() { NumberFormat = "yyyy-MM-dd HH:mm:ss" });
              return;
          }
          base.SetCellValue(dataType, value);
      }
  }


 spreadStreamExport.RunExportAsync(FILENAME, new MyRenderer(), options);

Completed
Last Updated: 20 Dec 2024 08:46 by ADMIN
Release 2024.4.1219 (Preview)
PdfViewer: Invalid rendering with German culture (Regression). Some text is missing and the rendering is broken.
Completed
Last Updated: 20 Dec 2024 08:46 by ADMIN
Release 2024.4.1219 (Preview)
When the ItemsSource of a LocalDataSourceProvider is null initially and than set to a new value, the FieldListViewModel of the inline field list is not refreshed. 
Completed
Last Updated: 20 Dec 2024 08:46 by ADMIN
Release 2024.4.1219 (Preview)
Last row groups and totals are cut off when the FieldListBehavior.ShowInline attached property is set to True on the RadPivotGrid and there is a vertical scrollbar present.
Completed
Last Updated: 20 Dec 2024 08:46 by ADMIN
Release 2024.4.1219 (Preview)
The CollectionEditor control has a ListBox on its left side, which has an indicator for the selected item when the Windows 11 theme is applied. Performing a selection and then reopening the drop-down to display the CollectionEditor, performing a selection does not update the indicator. It stays on the previously selected item prior to closing the drop-down.
Unplanned
Last Updated: 19 Dec 2024 07:54 by Mark
'Fit to Content' table is not pasted properly when copied from MS Word
1 2 3 4 5 6