Completed
Last Updated: 09 Sep 2016 14:42 by Alex Dybenko
Created by: Alex Dybenko
Comments: 7
Category: UI Framework
Type: Bug Report
1
After ILMerge buttons on printpreview dialog are not painted. Run attached InfoCubeM.exe (merged InfoCube.exe), press radbutton, buttons appears as on attached capture. InfoCube.ilproj and ILMerge-cmd.txt also in attached zip
Completed
Last Updated: 11 Nov 2014 09:04 by ADMIN
When the PaperSources collection contains an empty string the dialog enters in an endless loop.
Completed
Last Updated: 15 Sep 2021 12:20 by ADMIN
Release R3 2021
ADMIN
Created by: Telerik Admin
Comments: 3
Category: UI Framework
Type: Feature Request
1
A free configurable KANBAN-Board.

- Add N columns.
- Add tasks to column.
- Move task by drag and drop between columns.
- Task with header, image, link (or click event)
- Task as expandable container
Completed
Last Updated: 16 Feb 2017 17:59 by erwin
Workaround - set the Visible property of the needed pages to true
Completed
Last Updated: 30 May 2019 12:44 by ADMIN
To reproduce:
-use RadForm with WindowState=Maximized at design-time;
-add RadPanel with Dock = Top;
-after running the application minimize the form and maximize it again; as a result the form title bar is cut off.

Workaround: set Margin of the FormElement and Top docked panel when maximizing:

private void Form1_SizeChanged(object sender, EventArgs e)
{
    RadForm form = sender as RadForm;
    if (form != null)
    {
        if (form.WindowState == FormWindowState.Maximized)
        {
            form.FormElement.Margin = new Padding(0, 8, 0, 0);
            (form.Controls[0] as RadPanel).PanelElement.Margin = new Padding(0, 20, 0, 0);
        }
    }
}
Completed
Last Updated: 18 Jun 2014 08:10 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI Framework
Type: Feature Request
1
RadControls should implement the MS Active Accessibility rules.
Declined
Last Updated: 18 Sep 2014 14:58 by ADMIN
Telerik winforms demo application "bugtracker" issue:
reproduction:
1. drag the "bugs" window to touch the upper middle docking guide icon and without releasing the mouse button drag it further
Effect: please observe that the remainder of the "bugs window" will not be refreshed, you can draw with this window
The same issue can be also observed in the demo hub: drag > Tabstrip properties demo application and also in the DragDropService demo application.
Completed
Last Updated: 08 Jun 2016 10:07 by ADMIN
To reproduce:
- Open the Breeze theme.
- Hover the ScrollBar with the mouse - the background is changed and never restored. 
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI Framework
Type: Feature Request
1
Currently, if one wants to set the theme of his/her controls programmatically, he/she has to set a string value. However, the string value that has to be set is different from the class name of the theme component, so the user does not know what to set. A property that returns the ThemeName string should be implemented in each of the theme components.
Completed
Last Updated: 16 Jan 2012 09:00 by ADMIN
FIX. RadMultiColunmComboBox editable area should look like RadDropDownList editable area
Unplanned
Last Updated: 04 Nov 2022 09:19 by ADMIN
On higher DPI, controls are not scaled correctly when placed inside TableLayoutPanel with Rows/Columns SizeType set to Absolute
Unplanned
Last Updated: 29 Mar 2016 10:22 by Jesse Dyck
When user enter into a child record in a heiarchy RadGridView Jaws reads DBNull. When user go back, the proper field is read.
Completed
Last Updated: 03 Sep 2014 08:27 by Jeff
The screentip is not position correctly when the item is on the left part of the screen.
Completed
Last Updated: 06 Nov 2014 10:28 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: UI Framework
Type: Bug Report
1
1. Run the Demo Application 
2. Click the "Dock" item on the left list
3. Click "Programming" tile then lunch the example
4. Drag and drop the Tool Window 1 and/or Tool Window 2 to the document window 1 area to set Tool Window 1 and/or Tool Window 2 as tabbed document
5. Then you can only click and select Tool Window 1 and/or Tool Window 2, but you can't click and select document window 1

Resolution: 
In the Dock => Programming example is added code which prevent selection: 
private void radDock1_ActiveWindowChanging(object sender, DockWindowCancelEventArgs e)
{
	e.Cancel = e.NewWindow is DocumentWindow;
}

We modified the example to log information when select different windows.
Unplanned
Last Updated: 17 Apr 2024 14:45 by ADMIN
To reproduce: 
1. Use the following code snippet:
public class ViewModel:INotifyPropertyChanged
{
    public ViewModel()
    {
    }

    private bool _isShown;

    public bool IsShown
    {
        get
        {
            return this._isShown;
        }
        set
        {
            this._isShown = value;
            OnPropertyChanged("IsShown");
        }
    }

    public event PropertyChangedEventHandler PropertyChanged;

    protected void OnPropertyChanged(string propertyName)
    {
        PropertyChangedEventHandler handler = PropertyChanged;
        if (handler != null)
            handler(this, new PropertyChangedEventArgs(propertyName));
    }
}

2. Add a MS Panel and a RadPanel to the form.
3. Add Panel.DataBindings at design time for its Visible property to the ViewModel.IsShown property.
4. When you run the application, the MS Panel is not visible. However, if you remove the RadPanel it is shown. Please refer to the attached sample video illustrtaing better the performed steps.

Unplanned
Last Updated: 15 Aug 2017 09:38 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: UI Framework
Type: Feature Request
1
Presently we only have the white TelerikMetroTouch theme.
Unplanned
Last Updated: 30 Mar 2016 14:02 by ADMIN
FIX. RadBreadCrumb's ThemeName drop down does not display TelerikMetroTheme, when the latter is added to the form. However, if you type in the theme name, it is correctly applied.

Note: the same problem is noticed for VisualStudio2012Dark theme as well. 

Workaround: set the theme at run time by using the ThemeName property.
Completed
Last Updated: 25 Apr 2012 09:41 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: UI Framework
Type: Bug Report
1
FIX. RadGroupBox - memory leak when the group box Dock = Fill and Office2010Black theme is applied
Work around: this.radGroupBox1.Behavior.BitmapRepository.DisableBitmapCache = true;
RadDock:
Add a dock with two tool windows in a UserControl.
In the toolwindows add grid and a tree.
Apply Office2010Black theme to RadDock.
Place the control on a form, dock it and run the app.
Constantly resize the form and observe the memory used.
Work around: radDock1.Behavior.BitmapRepository.DisableBitmapCache = true;