Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
Created by: Svetlin
Comments: 0
Category: UI Framework
Type: Feature Request
3
If you define an html text (ex. <html><strong>0<strong><br><strong>0<strong><html>) and align it at center or right, the second line is not vertically aligned with the first one.
Completed
Last Updated: 12 Jan 2017 15:25 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 2
Category: UI Framework
Type: Feature Request
3
Make the RadDataFilter (http://www.telerik.com/products/wpf/datafilter.aspx) available for WinForm.
Completed
Last Updated: 19 Feb 2018 11:46 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 2
Category: UI Framework
Type: Feature Request
3

			
Completed
Last Updated: 23 Apr 2012 13:09 by Jesse Dyck
The settings from the dialog opened by the Print button on the RadPrintPreviewDialog are not taken into consideration.
Completed
Last Updated: 22 Mar 2013 03:33 by ADMIN
There is no style applied to the property grid item when one sets the error message.
Completed
Last Updated: 19 Dec 2016 06:56 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: UI Framework
Type: Bug Report
3
There is a specific case where command bindings stop working. Let's say we have a RadGridView and a binding which adds a new row in this RadGridView. If we open the context menu of RadGridView, then press ESC to close it and then execute the command binding, this binding stops working if we try to execute it further.
Completed
Last Updated: 04 Aug 2014 12:32 by Yannick
To reproduce:

Set your theme to Windows8:

ThemeResolutionService.ApplicationThemeName = new Windows8Theme().ThemeName;

Add a RadTextBox and RadMaskedEditBox:

RadTextBox textBox = new RadTextBox
{
    Parent = this,
    Dock = DockStyle.Top,
    Text = "TextBox"
};

RadMaskedEditBox maskedEditBox = new RadMaskedEditBox
{
    Parent = this,
    Dock = DockStyle.Top,
    Text = "MaskedEditBox"
};

RadDateTimePicker dateTimePicker = new RadDateTimePicker
{
    Parent = this,
    Dock = DockStyle.Top,
    Text = "DateTimePicker"
};


You can also set their Enabled property to false prior running the form. Run the form and you will see that their background is black.

Workaround:

For the RadTextBox, set the BackColor of the RootElement to white:

textBox.RootElement.BackColor = Color.White;

For the RadMaskedEditBox, set the BackColor of the TextBoxItem to white:

maskedEditBox.MaskedEditBoxElement.TextBoxItem.BackColor = Color.White;

For the RadDateTimePicker, set the BackColor of the TextBoxItem to white as follows:

dateTimePicker.DateTimePickerElement.TextBoxElement.TextBoxItem.BackColor = Color.White;

Completed
Last Updated: 23 Jun 2014 15:21 by ADMIN
RadTabStrip, RadToolStrip and RadTreeView still can get the focus if validating event is cancelled.
Completed
Last Updated: 20 Dec 2016 06:48 by ADMIN
RadButtonElement shows its border when it is in a button group where ShowBorder is false. It seems like there is an issue in the ForceReapplyStyle method.
Completed
Last Updated: 11 Feb 2014 15:27 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: UI Framework
Type: Feature Request
3
would make much more sense natively within the Telerik control(s) that support html-like formatting / framework  in a future version (e.g. a .PlainText property or .GetPlainText() property next to the .Text property).
Completed
Last Updated: 18 Jan 2022 08:17 by ADMIN
Release R1 2021
Created by: Sz
Comments: 7
Category: UI Framework
Type: Feature Request
3
Hello,

The Toast Notification is similar than the MessageBox, but not block the UI with an "always on top" dialog and dont have a dialogresult return value. This is only a text message, that shown, and hides after specified second. I can set the text, the background and foreground color, the container control and the alignment of the notification. I use this control to interact with the user, but not disturb his work. 

Example messages:
"The table saved successfully!"
"Refresh done."
etc..

The color can define also the type of the message:
Green -> OK
Red -> Error
Yellow ->Warning
Blue -> Information
...

Thanks!

Best Regards,
László

Completed
Last Updated: 10 Oct 2014 15:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI Framework
Type: Bug Report
3
GridImageCellElement should be able to hide the image that it shows. This should be possible thanks to a property that determines the visibility of the image. Probably, this property should be exposed at the base class LightVisualElement.

Resolution: 
Add new properties DrawImage and DrawBackgroundImage. You can use the following code snippet: 
void radGridView1_CellFormatting(object sender, CellFormattingEventArgs e)
{
    if (e.CellElement is GridImageCellElement)
    {
        e.CellElement.DrawImage = false;
    }
}
Completed
Last Updated: 18 Jun 2014 08:12 by ADMIN
If there is some accessibility software running (screen readers, UI automation/inspection tools) and you try to edit a value in a decimal column, an exception will be thrown.
Completed
Last Updated: 21 Mar 2015 15:45 by ADMIN
To reproduce:

Add a RadTreeView (or any other control with tooltips) and enable the tooltips. Set the ToolTipText to be long and move the form to the end of the screen. Hover over an element to show a tooltip, you will see that the Tooltip is cut off.

Workaround:

Move the ToolTip manually:

void TreeView_ToolTipTextNeeded(object sender, ToolTipTextNeededEventArgs e)
{
    e.ToolTipText = "SOMEEEEE LOOOOONNGGGG TOOOOLLTIIIPPP TTTEEEXXXTTT";


    Size screenSize = new Size(Screen.AllScreens[Screen.AllScreens.Length - 1].Bounds.Width * Screen.AllScreens.Length, Screen.PrimaryScreen.Bounds.Height);
    Size textSize = TextRenderer.MeasureText(e.ToolTipText, new Font("Courier New", 10.0f, FontStyle.Bold));
    Point mousePoint = MousePosition;


    Point toBeDisplayedTooltipLocation = new Point(mousePoint.X + textSize.Width, mousePoint.Y);
    if (toBeDisplayedTooltipLocation.X >= screenSize.Width)
    {
        e.Offset = new Size(screenSize.Width - toBeDisplayedTooltipLocation.X, 0);
    }
}

Completed
Last Updated: 28 Jun 2016 11:12 by ADMIN
RadPageView in BackStageMode loses its content when user changes the theme from the Listbox, placed into BackStageView.
For example, user choose Office2010Black or Office2007Black or HighContrast and BackStage view appears empty

Workaround: all recursively the UpdateLayout method for all RadControls in the form

private void RefreshAll()
{
    foreach(Control control in this.Controls)
    {
        RefreshAllControls(control);
    }
}
 
void RefreshAllControls(Control ctrl)
{
    foreach (Control control in ctrl.Controls)
    {
        RadControl radControl = control as RadControl;
        if (radControl != null)
        {
            radControl.RootElement.InvalidateMeasure(true);
            radControl.RootElement.UpdateLayout();                   
        }
        RefreshAllControls(control);
    }
}
Completed
Last Updated: 23 Sep 2015 12:07 by Jesse Dyck
- It could have some doctors as resources with different working hours/days
- Ability of the patients to add appointments for the available hours
Completed
Last Updated: 01 Aug 2011 04:25 by ADMIN
FIX. Mnemonics are executed without the control being on focus or ALT key pressed.
Completed
Last Updated: 18 Jul 2012 06:37 by Jesse Dyck
1. Create a new project and add a RadLabel.
2. When handling the Form.Load event set its Enabled state first to false and then to true.
3. Run the project and you will see that the label is still disabled.
Completed
Last Updated: 04 Oct 2011 04:34 by ADMIN
FIX. Theme: RadMultiColumnComboBox arrow button theme is different than the other drop down controls (ControlDefault)
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
There is no style applied to the RadTreeView drag&drop indicator.