Unplanned
Last Updated: 09 Jan 2025 11:30 by ADMIN
The CellSpacing property value is not taken into account. This property has different value in different themes.
Unplanned
Last Updated: 08 Jan 2025 14:24 by ADMIN

We are using the DropDownButtonElement on a RibbonBar, there are a very frustating issue with the RadArrowButtonElement.

WinForms RadButtons RadDropDownButton's elements hierarchy

 

On this image it show 5 children, but on code there are 6 children, here is a CopyPase of your  CreateChildElements in RadArrowButtonElement.


    protected override void CreateChildElements()
    {
        arrow = new ArrowPrimitive(ArrowDirection.Down);
        arrow.Class = "RadArrowButtonArrow";
        arrow.AutoSize = false;
        arrow.Alignment = System.Drawing.ContentAlignment.MiddleCenter;
        overflowArrow = new OverflowPrimitive(ArrowDirection.Down);
        overflowArrow.Class = "RadArrowButtonOverflowArrow";
        overflowArrow.AutoSize = false;
        overflowArrow.Alignment = System.Drawing.ContentAlignment.MiddleCenter;
        overflowArrow.Visibility = ElementVisibility.Collapsed;
        fillPrimitive = new FillPrimitive();
        fillPrimitive.Class = "RadArrowButtonFill";
        fillPrimitive.AutoSizeMode = RadAutoSizeMode.FitToAvailableSize;
        borderPrimitive = new BorderPrimitive();
        borderPrimitive.Class = "RadArrowButtonBorder";
        borderPrimitive.AutoSizeMode = RadAutoSizeMode.FitToAvailableSize;
        imagePrimitive = new ImagePrimitive();
        imagePrimitive.Class = "RadArrowButtonImage";
        imagePrimitive.AutoSizeMode = RadAutoSizeMode.FitToAvailableSize;
        imagePrimitive.Alignment = System.Drawing.ContentAlignment.MiddleCenter;
        textPrimitive = new TextPrimitive();
        textPrimitive.Class = "RadArrowButtonTextGlyph";
        textPrimitive.AutoSizeMode = RadAutoSizeMode.FitToAvailableSize;
        textPrimitive.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
        textPrimitive.StretchHorizontally = true;
        textPrimitive.StretchVertically = true;
        Children.Add(fillPrimitive);
        Children.Add(borderPrimitive);
        Children.Add(arrow);
        Children.Add(overflowArrow);
        Children.Add(imagePrimitive);
        Children.Add(textPrimitive);
    }


The problem is that we are changing the ArrowButton size to (6, 0) width, here is the how it looks:

As you can see the triangle is outside the ArrowButton, my first idea was to look the ArrowPrimitive and OverflowPrimitive, but that triangle is on TextPrimitive.

Making this change on RadDropDownButtonElement i was able to "solve" the offset and the size.
base.ArrowButton.TextPrimitive.Font = new Font(base.ArrowButton.TextPrimitive.Font.FontFamily, 6);

I have to comment this to something like: "I dont know why this works, but the triangle is on a child text primitive... So don't erase this line".

Unplanned
Last Updated: 07 Jan 2025 14:51 by ADMIN
The control exposes the OpenedFileName property which will be set when a document is opened. When we try to open a new document, but instead click the Cancel of the OpenFileDialog and close the dialog, this property will be reset. However, the document stays the same. In this case, this property should not be reset.
Unplanned
Last Updated: 06 Jan 2025 14:39 by ADMIN

Repro-steps:

myRadGridView.Rows.Add((GridViewDataRowInfo)null);

Actual behavior

  1. NullReferenceException is thrown
  2. A new row is added.

Excepted behavior

  1. Or an ArgumentNullException is thrown, and no rows are added.
  2. Or a new row is added, and no exception is thrown.

Remark

The method AddRange is also impacted by this bug.

Unplanned
Last Updated: 06 Jan 2025 13:21 by ADMIN

In this scenario, the reported behavior is observed in NET 8. The same behavior is not reproducible in .Net Framework 4.8. When the map is zoomed max out and we try to pan the view, missing tiles appear and the performance is very slow. Additionally, in the output tab of VS, we can observe some exceptions:

Unplanned
Last Updated: 25 Dec 2024 14:00 by ADMIN

The following assemblies are missing in the 2024_4_1127_Dev_Preview zip folder:
- Telerik.Windows.Documents.Flow.FormatProviders.Doc
- Telerik.Windows.Documents.Flow.FormatProviders.Pdf
Telerik.Documents.SpreadsheetStreaming.dll

Unplanned
Last Updated: 23 Dec 2024 10:21 by ADMIN

System.ArgumentException: 'An item with the same key has already been added.' when the data source contains DateTime with the same hour, minute, and seconds part (only milliseconds are different):

 

Unplanned
Last Updated: 09 Dec 2024 14:04 by ADMIN
Created by: Andrei
Comments: 1
Category: RichTextEditor
Type: Bug Report
1

List Style is not rendered correctly.

Case 1:

Case 2:

Case 3:

 

Unplanned
Last Updated: 06 Dec 2024 07:32 by ADMIN
When the navigation view is collapsed, and the client deletes a page. 
Unplanned
Last Updated: 04 Dec 2024 17:18 by ADMIN
Created by: Xinchen
Comments: 1
Category: NavigationView
Type: Bug Report
0
When select the last item in the navigationview, the scrollbar jumps to the middle.
Unplanned
Last Updated: 04 Dec 2024 13:39 by ADMIN
Created by: Eddie
Comments: 1
Category: Spreadsheet
Type: Bug Report
0

1. Select two or more cells.

2. Click on the "All charts" button

3. The charts are not displayed and the following error occurs:

Unplanned
Last Updated: 29 Nov 2024 14:09 by ADMIN
Missing paragraphs when importing Docx document.
Unplanned
Last Updated: 28 Nov 2024 13:39 by ADMIN
Unplanned
Last Updated: 25 Nov 2024 12:24 by erwin
Calling the BestFitColumns() method after setting the DataSource will not resize the columns. The method logic is called before the internal measure of the control is finished. 
Unplanned
Last Updated: 25 Nov 2024 12:22 by ADMIN

Incorrect or missing accessible object names in the Inspect.exe tool (MSAA).

 

 

 

Unplanned
Last Updated: 21 Nov 2024 12:14 by ADMIN

Auto-complete items overlap in the VisualStudio2022 theme:

Unplanned
Last Updated: 21 Nov 2024 10:17 by ADMIN
The calendar drop-down is displayed incorrectly the first time. If I close and reopen it, it shows the entire calendar and everything is well.
Unplanned
Last Updated: 19 Nov 2024 12:51 by ADMIN
In this particular case, the control is bound to a custom object using SchedulerBindingSource. As demonstrated in the Binding to Business Objects help article. While using this set-up, deleting Recurrence does not delete the Exceptions collection in the business object. The exceptions collection property of the Appointment inside the RadScheduler is cleared, however, the changes are not transferred to the data object.
Unplanned
Last Updated: 12 Nov 2024 12:17 by ADMIN
Incorrect conversion of the Appointment Start/End date when changing the TimeZone.
Unplanned
Last Updated: 24 Oct 2024 10:51 by ADMIN
Null exception is thrown when loading Docx file with tables.
1 2 3 4 5 6