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: 28 May 2019 10:17 by ADMIN
Created by: Doftech
Comments: 5
Category: UI for WinForms
Type: Bug Report
0
When developing a third party (PPM Hexagon Smart Sketch), focus on the grid and key-in. When using the winform basic control, there is no problem but when you create it with RadGridView, the application will be stopped by key-in.
Unplanned
Last Updated: 24 May 2019 08:29 by ADMIN
Created by: n/a
Comments: 6
Category: UI for WinForms
Type: Feature Request
1
The new series will be similar to the RadarColumnSeries which is already available. https://docs.telerik.com/devtools/aspnet-ajax/controls/htmlchart/chart-types/polar-chart
Completed
Last Updated: 23 May 2019 14:22 by ADMIN

Use attached to reproduce. 

Type "Christoff" and scroll down.

Workaround:

public RadForm1()
{
    InitializeComponent();
    FilterToList.DropDownListElement.AutoCompleteSuggest.DropDownList.VisualItemFormatting += DropDownList_VisualItemFormatting;
}

private void DropDownList_VisualItemFormatting(object sender, Telerik.WinControls.UI.VisualItemFormattingEventArgs args)
{
    args.VisualItem.TextWrap = false;
}

 

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: 23 May 2019 13:20 by ADMIN
Release R2 2019 SP1 (LIB 2019.2.527)
Created by: Kun
Comments: 1
Category: UI for WinForms
Type: Bug Report
3
Use attached to reproduce!
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: 23 May 2019 13:19 by ADMIN
Release R2 2019 SP1 (LIB 2019.2.527)
- Add RadRibbonForm
- Set the radRibbonBar1 RightToLeft property to YES at design time
- Close the designer and open it again -> another ribbon is showing up

Workaround: done set the ribbon's RightToLeft property, just set the RightToLeft property of the form itself.
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: 16 May 2019 06:13 by ADMIN
Created by: Tomislav
Comments: 3
Category: UI for WinForms
Type: Bug Report
0

Accelerator Key is working but not underlined (underline is enabled in windows 10 and visible in other applications).


Telerik.WinControls.UI, Version=2019.1.117.40

Completed
Last Updated: 16 May 2019 06:04 by ADMIN

I used RadPageView under the theme "VisualStudio2012LightTheme" .

The ViewMode of RadPageview is Stack.

I wanted to change the font size of page header in runtime but it was not workable.

If I changed the theme to VisualStudio2012DarkTheme or Office2013LightTheme, it worked fine.

Completed
Last Updated: 16 May 2019 05:59 by ADMIN
Created by: atfats
Comments: 1
Category: UI for WinForms
Type: Bug Report
0
 Hi. I try to resolve the problem as u describe but Still having the same error msg Any other solution
Completed
Last Updated: 16 May 2019 05:58 by ADMIN
RE: Bug Report ID:1385123 -- when upgrading from r3 sp1 2018 to r1 2019 using vb.net 2012 i received an error
Unplanned
Last Updated: 16 May 2019 05:53 by ADMIN
This would allow switching the focus between form field controls by using the Tab key.
Unplanned
Last Updated: 16 May 2019 05:51 by ADMIN
Created by: Arikkan
Comments: 0
Category: UI for WinForms
Type: Bug Report
0
Use attached to reproduce.
Unplanned
Last Updated: 16 May 2019 05:44 by ADMIN
Deleting table right after merged fields are updated causes StackOverflowException.
Completed
Last Updated: 16 May 2019 05:43 by ADMIN
Created by: D3 Solutions
Comments: 1
Category: UI for WinForms
Type: Bug Report
0
auto complete feature not working. i'm using unbound mode
Completed
Last Updated: 16 May 2019 05:42 by ADMIN
Created by: D3 Solutions
Comments: 1
Category: UI for WinForms
Type: Bug Report
0
my operating system win 10 64 bit. visual studio 2015. .net 4.6.1 installed. convert to telerik controls menu not showing
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: 13 May 2019 21:18 by Kevin
Release R2 2019 (LIB 2019.1.415)
Created by: Benjamin
Comments: 6
Category: UI for WinForms
Type: Bug Report
2

Use attached to reproduce.

Workaround:

public RadForm1()
{
    InitializeComponent();
    radPdfViewer1.ContainerElement.BookmarksTree.SelectedNodeChanged += BookmarksTree_SelectedNodeChanged;
}

private void BookmarksTree_SelectedNodeChanged(object sender, Telerik.WinControls.UI.RadTreeViewEventArgs e)
{
    Telerik.Windows.Documents.Fixed.Model.Navigation.BookmarkItem bookmark = e.Node.Tag as Telerik.Windows.Documents.Fixed.Model.Navigation.BookmarkItem;

    if (bookmark != null && bookmark.Destination == null)
    {
        GoToAction goToAction = bookmark.Action as GoToAction;
        if (goToAction != null && goToAction.Destination != null)
        {
            radPdfViewer1.PdfViewerElement.GoToDestination(goToAction.Destination);
        }
    }
}