Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
RadListSource should discover properties from its DataSoucre via ITypedList if the DataSource implements this interface.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
Please set the RadLabel text to "<html><a href="http://www.telerik.com">Awesome WinForms Control Suite</a></html>"
Completed
Last Updated: 05 Jun 2014 07:07 by Jesse Dyck
The RadSplitButtonElements are rendered with the default color from the theme not with the ribbon color (like the RadDropDownButton)
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
PrintSettings dialog crash if Printer's SourceName is empty.
Workarround: Enumerate printers and set a name for empty Source Names.

class MyPrintSettingDialog : PrintSettingsDialog
{
    public MyPrintSettingDialog(RadPrintDocument document):base(document)
    { }
    public MyPrintSettingDialog():base()
    { }
 
    protected override void LoadSettings()
    {
        PrinterSettings.PaperSourceCollection paperSourceCollection = this.PrintDocument.PrinterSettings.PaperSources;
        int index = 0;
        while (index < paperSourceCollection.Count)
        {
            if (string.IsNullOrEmpty(paperSourceCollection[index].SourceName) || paperSourceCollection[index].SourceName == "-1")
            {
                paperSourceCollection[index].SourceName = "NONEMPTY NAME";                    
            }
             
            index++;
        }
 
        base.LoadSettings();
    }
}
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
Steps to reproduce:
1) Launch your demo application and select -->scheduler -->DataBinding
Select Bind to dataset
2) Try to re-size any appointment by mouse and click Save button it will revert to previous state
and you see the error.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
There is no style applied to the RadTreeView drag&drop indicator.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
Html-like text background color get spots of 1px whitespace between words.
Completed
Last Updated: 14 May 2014 08:31 by ADMIN
ADMIN
Created by: Ivan Petrov
Comments: 0
Category: UI Framework
Type: Feature Request
6
Text baseline alignment capabilities for Rad controls.
Completed
Last Updated: 08 May 2014 11:41 by ADMIN
To reproduce:

Add a RadListView with some items. Set the theme to Office2013Dark/Light, select one item, hold shift and select another item. You will notice that only the current item appears selected.

Workaround:

Use the attached theme files. Load them as follows:

ThemeResolutionService.LoadPackageFile(@"PathToTheme");
ThemeResolutionService.ApplicationThemeName = "Office2013Light";
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: UI Framework
Type: Bug Report
5
Right and bottom padding does not working corectly when there is TextWrap
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
When maximizing child form in MDI container form with Windows8theme applied, the theming of the MDI buttons would be missing.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
Steps to reproduce:
1) Add RadDropDownButton control
2) Load Office2010Black theme
3) Define specific System.Drawing.Font:

            Font font = new Font("Arial", 12.00f, System.Drawing.FontStyle.Italic);

4) Create RadMenuItem:

            RadMenuItem myRadMenuItem = new RadMenuItem();
            myRadMenuItem.Text = "My New Item";
            myRadMenuItem.Font = font;
            radDropDownButton1.Items.Add(myRadMenuItem);  

Expected result: change the font of the RadMenuItem
Actual result: nothing happens

WORKAROUND:
1) Open Visual Style Builder and load the Office2010Black theme
2) In the Controls Structure pane navigate to RadMenu - DropDown>> RadMenuItem and select the RadMenuItemTextPrimitive item from the Elements Pane.
3) Remove FontSegoeUI8pt and ForeColorBlack repository items
4) Select the RadMenuItem item from the Elements Pane and add FontSegoeUI8pt and ForeColorBlack repository items
5) Save the theme and load it in your application
Declined
Last Updated: 14 Apr 2014 15:18 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 3
Category: UI Framework
Type: Feature Request
4
As the world of data visualization changes and the demands for features to the end-users allowing them to use visualisation methods such as dashboards and pivots allowing them to slice and dice runtime. 
Are there anything in the telerik roadmap which allows for this kind of product component?

I see that competitors such as ComponentOne has Active analytics and Devexpress has dashboraddesigner and dashboardviwer as components in their toolbox.

If anyone else are seeking the same oppertunity in the Telerik toolbox please feel free to comment.

Thanks for providing great tools for the developers of the world.
Completed
Last Updated: 08 Apr 2014 14:58 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: UI Framework
Type: Feature Request
5
Update the Aqua theme to be used with the new VSB
Completed
Last Updated: 24 Mar 2014 10:03 by ADMIN
ADMIN
Created by: Georgi I. Georgiev
Comments: 0
Category: UI Framework
Type: Bug Report
0
To reproduce: Add a RabRibbonBar, add a ribbonGroup, set the theme to windows7, run the application, autohide the ribbon's content element. Click on one of the tabs and you will notice that there is a space between the tab and the content.
Completed
Last Updated: 26 Feb 2014 14:22 by ADMIN
ADMIN
Created by: Dobry Zranchev
Comments: 0
Category: UI Framework
Type: Feature Request
0
Add PasswordChar property to RadTextBoxElement
Completed
Last Updated: 26 Feb 2014 13:56 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: UI Framework
Type: Feature Request
1
Register themes as components
Completed
Last Updated: 25 Feb 2014 15:55 by ADMIN
To reproduce:
- Add radPageView with two pages one of which must have longer text.
- Set the ViewMode to Strip and the StripAlingment to left.
- When you are switching fast between the pages you will notice that the content area is moved.
Declined
Last Updated: 20 Feb 2014 15:29 by ADMIN
Neither of the following set the shape of RadButton
this.radButton1.ButtonElement.Shape = shape;
this.radButton1.RootElement.Shape = shape;
this.radButton1.RootElement.ApplyShapeToControl = true;
The theme overrides the local settings.
Comment: RadButton uses an image to display its border. The image cannot be shaped and this causes the issue.
Completed
Last Updated: 20 Feb 2014 15:29 by ADMIN
To reproduce:
-add RadRibbonBar with RadDropDownButtonElement and use the following code:
 this.radDropDownButtonElement1.AutoToolTip = true;
 this.radDropDownButtonElement1.ToolTipText = "tooltip";

As a result, no tool tip has been shown.

Workaround:
public Form1()
{
    InitializeComponent();

    this.radRibbonBar1.ToolTipTextNeeded += radRibbonBar1_ToolTipTextNeeded;
    this.radDropDownButtonElement1.ToolTipText = "tooltip";
}


private void radRibbonBar1_ToolTipTextNeeded(object sender, Telerik.WinControls.ToolTipTextNeededEventArgs e)
{
    ActionButtonElement actionButton = sender as ActionButtonElement;
    RadArrowButtonElement arrowButton = sender as RadArrowButtonElement;

    if (actionButton != null)
    {
        e.ToolTipText = ((RadDropDownButtonElement)actionButton.Parent.Parent).ToolTipText;
    }
    else if (arrowButton!=null)
    {
        e.ToolTipText = ((RadDropDownButtonElement)arrowButton.Parent.Parent).ToolTipText;
    }
}