Unplanned
Last Updated: 29 May 2020 07:52 by ADMIN

Submitted on customer behalf:

https://photos.app.goo.gl/ZsxVkRkXdQz7KcDf6

The problem, as described in the video, is that the thumb does not 'snap' to the point touched and then follow the touch as it is dragged. It is therefore difficult at times to actually 'grab' hold of the thumb unless you touch the screen in exactly the right point.

Changing the 'SnapToTicks' property purely makes the movement smoother once it is grabbed.


Unplanned
Last Updated: 12 May 2020 11:10 by ADMIN

When the RadMap.ShowSearchBar property is set to true and the BingRestMapProvider is used, it would be nice to have autocomplete suggestion while the user is typing:

https://docs.microsoft.com/en-us/bingmaps/rest-services/autosuggest

Unplanned
Last Updated: 04 May 2020 14:19 by ADMIN
Currently, ScatterSeries and ScatterLineSeries don't support null values.
Unplanned
Last Updated: 31 Jan 2020 07:29 by ADMIN
The document styles are not respected because of wrongly imported custom style name after copy-paste from MS Word and exported to HTML.

Workaround: avoid using styles with braces in their name.
Unplanned
Last Updated: 17 Apr 2024 14:39 by ADMIN

Apply the Office2010Silver theme to your application since it has a good border indication for the focus in RadSpinEditor. 

Please run the attached project and click in the RadSpinEditor that is not in the RadPopupContainer. You will notice that when you move the mouse away that the border is highlighted in yellow showing that the control has complete focus. Now, click in the RadSpinEditor that is in the RadPopupContainer and move your mouse away. You will notice that the border is not highlighted in yellow indicating that it does not have focus. You can also see that it does not fire the GotFocus event. If you click closer to the border out of the "TextBox" area, the control border will stay yellow showing complete focus and fire off the GotFocus event. However, in this case, the caret is not displayed.

Workaround: handle the GotFocus/LostFocus events for the SpinElement.TextBoxItem and apply the desired border for indicating the focus.
Unplanned
Last Updated: 14 Apr 2020 15:26 by ADMIN

Please refer to the attached sample project and gif file. The ShouldCheckDataRows property of the column is disabled. Hence, the developer will manage the toggle state of the data cells.

There are two problems here:

1. In the HeaderCellToggleStateChanged event we toggle all data rows in correspondence with the header checkbox. Once a data cell value is changed, we set the GridViewCheckBoxColumn.Checked property to Off. However, it is not respected and the header checkbox still remains toggle.

2. Once you scroll the columns horizontally, the header checkbox synchronizes with the value of the GridViewCheckBoxColumn.Checked property. However, all of a sudden the HeaderCellToggleStateChanged event is toggled again even though we didn't clicked the checkbox in the header at all. This will make all data cells unchecked due to the code in the HeaderCellToggleStateChanged event.

Unplanned
Last Updated: 06 Feb 2020 13:20 by ADMIN
OverflowException is thrown while importing document using Helvetica font with custom encoding.
Unplanned
Last Updated: 23 Mar 2020 07:34 by ADMIN
The customers need to additionally process the elements after inserting them into the document or just change the caret position relative to the inserted element. At this point, the methods only insert elements without returning the concrete instance or copy the element passed as a parameter, if such overload is available (editor.InsertTable(table) clones the table and inserts a different instance in the document, InsertInline() clones the inline as well).
Unplanned
Last Updated: 23 Mar 2020 06:50 by ADMIN

1. Create a brand new project and add a ShapedForm.

2. Set the Size to 800,550.

3. Set the FormBorderStyle to FixedToolWindow.

You will notice that at run-time the size is changed to 816, 589.

Workaround:

        public ShapedForm1()
        {
            InitializeComponent();

            this.MaximumSize = new Size(800, 550);
        }

Unplanned
Last Updated: 17 Mar 2020 13:38 by ADMIN
When copy a modified Heading from Word document and paste it into a not empty RadRichTextEditor the modified styles are not correctly imported.
Unplanned
Last Updated: 17 Mar 2020 06:50 by ADMIN

Please refer to the attached gif file for a better illustration of the steps how o reproduce the undesired behavior.

Workaround: use RadForm

Unplanned
Last Updated: 05 Mar 2020 10:03 by ADMIN
Created by: Gilles
Comments: 0
Category: UI for WinForms
Type: Bug Report
0

How to reproduce:

private void RadForm1_Load(object sender, EventArgs e)
{
    this.radWebCam1.TakeSnapshot();
}

Workaround:

public class CustomWebCam : RadWebCam
{
    public override void TakeSnapshot()
    {
        FieldInfo fi = typeof(RadWebCam).GetField("player", BindingFlags.NonPublic | BindingFlags.Instance);
        object value = fi.GetValue(this);

        if (value == null)
        {
            return;
        }

        PropertyInfo propertyInfo = value.GetType().GetProperty("EvrVideoDisplay", BindingFlags.NonPublic | BindingFlags.Instance);
        value = propertyInfo.GetValue(value, null);

        if (value == null)
        {
            return;
        }

        base.TakeSnapshot();
    }
}

Unplanned
Last Updated: 27 Feb 2020 08:56 by ADMIN
Created by: Micronova
Comments: 0
Category: UI for WinForms
Type: Feature Request
0

Currently, RadFileDialogs uses a RadAutoCompleteBox for specifying the folder/file name. It would be nice to have a drop down with recent files:

Unplanned
Last Updated: 06 Feb 2020 14:01 by ADMIN
Please open the sample document in the Demo application and start scrolling. The attached gif file illustrates the obtained behavior. It is necessary to wait 2-3 seconds to scroll to the correct document's position.
2 3 4 5 6 7