Declined
Last Updated: 16 May 2019 08:17 by ADMIN
Created by: Christian
Comments: 1
Category: UI for WinForms
Type: Bug Report
1
Use attached to reproduce.
Completed
Last Updated: 18 Apr 2019 13:50 by ADMIN
Release R2 2019
Calling the OffsetView method with a 0 step should return the view currently displayed in the control. At the moment the view is adjusted according to DateTime.Now.
Completed
Last Updated: 18 Apr 2019 10:21 by ADMIN
Release R2 2019
Use attached to reproduce
Completed
Last Updated: 14 May 2019 06:40 by ADMIN

How to reproduce: set the ShowIcon property to false.

this.ShowIcon = false;

Completed
Last Updated: 02 May 2019 13:28 by ADMIN
Release R2 2019

Use attached to reproduce!

- remove the space from the text in the formatting event so the text is empty

Completed
Last Updated: 23 May 2019 13:20 by ADMIN
Release R2 2019 SP1 (LIB 2019.2.527)
Created by: John
Comments: 0
Category: UI for WinForms
Type: Bug Report
1
Run the app then drag the left side of the window to the right as far as possible, then rapidly drag the left side of the window back and forth. At some point, the application should crash with the exception (the project is available for download internally only)
Completed
Last Updated: 02 Jul 2019 15:28 by ADMIN
Release R3 2019 (LIB 2019.2.708)

Use attached to reproduce.

- In the excel-like filter popup unselect 0.1, 0.2, and 0.3 and then click "Fork"

- When the layout is loaded the values are changed to 1, 2, and 3. 

Workaround:

Change the culture before saving/loading the layout. 

Completed
Last Updated: 23 May 2019 13:20 by ADMIN
Release R2 2019 SP1 (LIB 2019.2.527)

ChildRowHeight can be set on the main table element of the control like this:

this.radGridView1.TableElement.ChildRowHeight = 750;

When the grid is in a hierarchy and a parent row is expanded, the inner child template will create a new table element and its ChildRowHeight is 205 which is the default value. It would be expected that the height of the inner table element is initially set as the height of the main table element of the control.

A possible workaround is to handle the ChildViewExpanded event of the grid this way:

private void RadGridView1_ChildViewExpanded(object sender, Telerik.WinControls.UI.ChildViewExpandedEventArgs e)
{
    GridTableElement tableElement = this.radGridView1.CurrentView as GridTableElement;
    if (tableElement != null && e.ParentRow.HierarchyLevel == 1)
    {
        tableElement.ChildRowHeight = 750;
        tableElement.InvalidateMeasure(true);
    }
}

 

 

Completed
Last Updated: 06 Jun 2019 13:47 by ADMIN
Release R2 2019 SP1 (LIB 2019.2.610)
Bind the grid to an enumeration, save/load the layout. 
Completed
Last Updated: 28 May 2019 15:59 by ADMIN
Release R2 2019 SP1 (LIB 2019.2.603)
Please refer to the attached sample project and follow the steps illustrated in the gif file.
Completed
Last Updated: 25 Jul 2019 14:47 by ADMIN
Release R3 2019 (LIB 2019.2.729)

https://docs.telerik.com/devtools/winforms/controls/gridview/filtering/setting-filters-programmatically-(composite-descriptors)

When creating a composite filter descriptor with a value that contains an array of enums, it generates an expression with IN, and an exception is thrown when adding it to the FilterDescriptors on a RadGridView control.

 

Exception Message:

{"The expression contains undefined function call In()."}

 

The expression value is: ([RandomPropertyName] IN (1,3,9) OR [RandomPropertyName] = 10)

 

We have recently upgraded from 2015.2.728.40 (where this worked) to the Feb. 2019 version, then today upgraded to the May 2019 version. The issue remains.

 

The project includes the following Telerik references:

 

Telerik.WinControls

Telerik.WinControls.GridView

Telerik.WinControls.PdfViewer

Telerik.WinControls.RadDock

Telerik.WinControls.RadMarkupEditor

Telerik.WinControls.UI

Telerik.Windows.Documents.Core

Telerik.Windows.Documents.Fixed

Telerik.Windows.Zip

TelerikCommon

 

Completed
Last Updated: 21 Aug 2020 16:14 by ADMIN
Release R3 2020
Created by: BERND
Comments: 0
Category: UI for WinForms
Type: Bug Report
1

To reproduce: 

radCheckBox1.Font = new Font("Segoe UI", 20, FontStyle.Regular);

radCheckBox2.ThemeName = "Fluent";
radCheckBox2.Font = new Font("Segoe UI", 20, FontStyle.Regular);

Workaround:

radCheckBox2.ButtonElement.Font = new Font("Segoe UI", 20, FontStyle.Regular);

           

Unplanned
Last Updated: 14 Jun 2019 06:47 by ADMIN

To reproduce:

- Open The popup

- Click on it, and then click on the form

- Repeat until the popup stays opened

Unplanned
Last Updated: 17 Sep 2019 08:46 by ADMIN
Created by: Jared
Comments: 1
Category: UI for WinForms
Type: Feature Request
1

Hi,

 

It would be cool if we had a Material Dark Theme,

More and more we see clients requesting this from our apps since Google has popularized the trend now.

 

Thanks

Unplanned
Last Updated: 06 Feb 2020 12:13 by ADMIN
We want to have full access to the 1920x1080 cameras at max FPS in the preview stream. But when we record, we'd like to record the video at smaller resolution (720p) and a lower FPS, ~30 or so we could use something like FFMPEG to resize post recording, but we'd rather not have to do that extra processing.
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.
Unplanned
Last Updated: 17 Feb 2020 13:52 by ADMIN
When a developer set the RadForm.ThemeName property and then drag any controls onto the form, they will get automatically this theme applied to the control's ThemeName property. However, if you already have some controls on the form with ThemeName = "X" and you change RadForm.ThemeName to "Y", all controls' ThemeName should be changed to the new RadForm.ThemeName as well.
Completed
Last Updated: 09 Mar 2020 14:30 by ADMIN
Release R2 2020 (LIB 2020.1.316)

 public RadForm1() 
        {
            RadMapElement.VisualElementFactory = new MyMapVisualElementFactory();
            InitializeComponent();
        } 

 

public class MyMapVisualElementFactory : MapVisualElementFactory
    {
        public override MapCluster CreateCluster()
        {
            System.Diagnostics.Debug.WriteLine("FIRE!");
            return new MapCluster();
        }
    }
Unplanned
Last Updated: 26 Feb 2020 10:41 by ADMIN
When RadOpenFileDialog is opened, open an Explorer window , select a file, copy it and paste in the folder displayed from the RadOpenFileDialog. If the same operation is performed using a standard WinForms OpenFile dialog the pasted file is selected after the paste operation.
Declined
Last Updated: 16 Feb 2024 20:28 by ADMIN
The filter UI controls in ASP.NET Core and MVC are really nice, see filter. Can you include the same controls and UI be included in Winforms and WPF?