Unplanned
Last Updated: 19 Jul 2018 10:55 by Rick
Created by: Rick
Comments: 0
Category: UI for WPF
Type: Bug Report
5
List numbering should be restarted when copied list is pasted after content that is not in a list.

Steps to reproduce:
1. Create a file with a list, a blank line, some text, and another blank line
2. Copy the list
3. Paste it on the blank line directly after the list
Expected: The items are added to the end of the existing list
Observed: The items are added to the end of the existing list
4. Paste it on the blank line after the text
Expected: The items are added to a new list and start numbering at 1
Observed: The items are added to the existing list and start numbering at 7

Workaround:
private void RadRichTextBox_CommandExecuting(object sender, Telerik.Windows.Documents.RichTextBoxCommands.CommandExecutingEventArgs e)
{
    if (e.Command is PasteCommand)
    {
        DocumentPosition position = new DocumentPosition(this.radRichTextBox.Document);
        position.MoveToPosition(this.radRichTextBox.Document.CaretPosition);
        position.MoveUp();
        Paragraph previousParagraph = position.GetCurrentParagraphBox().AssociatedParagraph;
        if (previousParagraph.IsInList)
        {
            // We shouldn't restart the numbering when the previous paragraph is in a list.
            return;
        }

        RadDocument doc = ClipboardEx.GetDocument().ToDocument();
        Paragraph firstParagraph = doc.EnumerateChildrenOfType<Paragraph>().First();
        if (firstParagraph != null && firstParagraph.IsInList)
        {
            RadDocumentEditor editor = new RadDocumentEditor(doc);
            editor.Document.CaretPosition.MoveToStartOfDocumentElement(firstParagraph);
            editor.RestartListNumbering();
        }

        this.radRichTextBox.InsertFragment(new DocumentFragment(doc));
        e.Cancel = true;
    }
}
Unplanned
Last Updated: 04 Oct 2021 12:53 by ADMIN
Created by: LindenauAtSOG
Comments: 9
Category: UI for WPF
Type: Bug Report
4
Bug can be observed using the Demo => PivotGrid => More OLAP Examples

Setup like so and hit refresh


A customer reported this issue. We could observe that the memory of the process was exploding, this doesnt happen in the demo for some reason.
Using the old RadarSoft  WinForms Pivot Control, the same view that our customer had issues with, is loading in a reasonable time.



Please also make sure that in future releases you add some cancel functionality so one doesn't have to restart the application....
Unplanned
Last Updated: 02 Oct 2018 09:30 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 0
Category: UI for WPF
Type: Bug Report
3

			
Unplanned
Last Updated: 08 Aug 2016 09:29 by Eric Rodewald
Unplanned
Last Updated: 15 May 2017 15:54 by ADMIN
When setting IsSynchronizedWithCurrentItem to true, the RadListBox behaves differently from the standard ListBox; changing the selection in the RadListBox does not update the current item of the underlying ICollectionView.
Unplanned
Last Updated: 18 Dec 2017 13:14 by ADMIN
It seems that on some devices a touch with the Stylus doesn't fire the WPF native Touch events. Only the Stylus events will be fired. Because the TouchManager internally works only with the WPF Touch events, the manager's events are not fired.
Unplanned
Last Updated: 15 Oct 2019 10:25 by ADMIN
When a document is imported (for example from XAML) and then exported to DOCX or RTF, the fields lose their formatting. The issue is not observed if the document is just created.
Workaround: Change the fields display mode of all fields in headers/footers just before the export:
private void UpdateHeadersFooters(RadDocument document)
{
    foreach (Section section in document.Sections)
    {
        if (section.Headers.Default.Body != null)
        {
            this.UpdateFields(section.Headers.Default.Body);
        }
 
        if (section.Headers.First.Body != null)
        {
            this.UpdateFields(section.Headers.First.Body);
        }
 
        if (section.Headers.Even.Body != null)
        {
            this.UpdateFields(section.Headers.Even.Body);
        }
 
        if (section.Footers.Default.Body != null)
        {
            this.UpdateFields(section.Footers.Default.Body);
        }
 
        if (section.Footers.First.Body != null)
        {
            this.UpdateFields(section.Footers.First.Body);
        }
 
        if (section.Footers.Even.Body != null)
        {
            this.UpdateFields(section.Footers.Even.Body);
        }
    }
}
 
private void UpdateFields(RadDocument radDocument)
{
    RadDocumentEditor editor = new RadDocumentEditor(radDocument);
    editor.ChangeAllFieldsDisplayMode(FieldDisplayMode.Code);
}
Unplanned
Last Updated: 03 Sep 2019 09:40 by ADMIN
Export and then import a linked style with HtmlFormatProvider and the style gets lost on import.
Unplanned
Last Updated: 25 Mar 2022 08:16 by ADMIN
Created by: Dorlig
Comments: 1
Category: UI for WPF
Type: Bug Report
2

In Windows 11,  when mouse over top level window title bar maximize box,  there should be snap layout drop down, but for any child window there should not be snap layout drop down.

I've tested the following 4 cases and all of them works fine

   1. win32 project

   2. MFC project

   3. general Winform project

   4. general WPF project.

but for Telerik WPF project which use RadRibbonWindow as main window, the behavior is wrong. as attached video shows

Unplanned
Last Updated: 05 Jan 2017 12:08 by ADMIN
ADMIN
Created by: Nasko
Comments: 2
Category: UI for WPF
Type: Bug Report
1

			
Unplanned
Last Updated: 05 Jan 2017 12:12 by ADMIN
Unplanned
Last Updated: 30 Jan 2017 15:20 by ADMIN
Unplanned
Last Updated: 24 Aug 2017 12:31 by ADMIN
Created by: Rob
Comments: 1
Category: UI for WPF
Type: Bug Report
1
The event args for the RadDocking.ActivePaneChanged are named "ActivePangeChangedEventArgs" which I'm assuming is a typo for "ActivePaneChangedEventArgs".
Unplanned
Last Updated: 11 Jun 2018 13:59 by ADMIN
maybe there are some ways to appear the  mouse point offset grow in steps when move the float window in raddocking by mouse drag.but I found when move the float window's header pass the document's tab,don't docking,then release mouse,and then move the float window again back and forth or up and down,the  mouse point offset grow in steps, at last the mouse's point leave the float window's header with hold the window's drag state.
Unplanned
Last Updated: 24 Mar 2020 15:26 by ADMIN
The image quality is changed when pasting an image. 
Unplanned
Last Updated: 18 Mar 2022 13:24 by Luc
When running an app on a remote computer and sharing the local webcam through the RDP, the light indicator on the webcam remains on even after the webcam is shut down. It only goes off if the process hosting the webcam's app is terminated.
Unplanned
Last Updated: 10 May 2023 11:36 by ADMIN

I use RadWindow as the main window for my application (primarily because I want to embed a menu in the title bar).  This works well except our users have reported a bug where they are unable to use hotkeys following activating the application from the TaskBar.

A typical scenario:

* minimise the application using the minimise button

* some time later, activate the app by clicking on the TaskBar icon

* Press CTRL+N hotkey combination which should execute a command

I have created a sample application that shows two windows: a regular Window and a RadWindow.  They both contain input bindings for the Ctrl+N combination.  When the regular window is activated from the taskbar, the input bindings work, but when the same sequence of events is performed on the RadWindow the input bindings do not work.  Clicking between the windows does work - it seems the problem is only related to application activation.

On a related note, both windows contain a TextBox control.  If text is highlighted in the regular window, the highlighted text is maintained and redisplayed when the window is activated.  This does not work for the RadWindow.  As it relates to keyboard focus, I wonder if the problem is related.

Unplanned
Last Updated: 29 Sep 2023 12:54 by ADMIN

Hi,

I would like to report that automatic generate of connection point for Bezier connection is wrongly generated when link is attached to Gliding Connector.

Connection point is generated at the position where link is attached to shape. I think for such use-case you should generate connection point taking into account angle of link in relate to shape and generate connection point a bit moved. When connection point is generated at attach position it makes that the "arrow" of link have wrong angle.

I'm attaching video and your sample solution with my modifications to easier reproduction.

Best regards,

BH

Unplanned
Last Updated: 29 Sep 2023 10:37 by ADMIN

Hi,

I would like to report that Z-index have unexpected values when RadDiagramContainerShape are used.

Please watch video first, my remarks points to the video attached to the ticket.

1. Currently there is a possibility that Container A can be hidden by Container B and this is fine.(~11sec of movie)

2. However then i will add Container C to Container A and then drag Container B to overlaps Container A it overlaps only Container A and does not overlaps Container C which for end-user could be very confusing, why Container C is visible at that time.(~20-30 sec of movie)

The problem gets more complicated when i drop Container B to overlaps Container A but without adding Container B as a child of Container A.

In that way it looks that children of Container A are children of Container B

3. When i will add new container "Header" to Container B and then overlaps Container A and Container C then its even more mixed up(~ 30-50 sec of movie)

4. When i will add new container "Header" to Container A and Z-index are somehow refreshed and then in magic way Container_C now overlaps "Header" container from Container B(~58sec of movie)

I would expect:

Fix calculation of Z-index in that way if Container B overlaps Container A it means it overlaps as well it's children. Currently you have flat hierarchy of VMI containers which leads to such Z-index issues. 

OR

Expose possibility to override your internal methods which calculates the Z-index.

1 2