Completed
Last Updated: 09 Jun 2020 10:35 by ADMIN
Release R2 2020 SP1
Created by: Steve
Comments: 5
Category: Forms/Dialogs/Templates
Type: Bug Report
0

I'm having an issue when using the RadMarkupDialog control where the & symbol is not being saved correctly.  All other symbols seem to be encoded which is causing a problem.  

Using the control, if I put the following in the markup section:

<span style="font-size: 16pt">Test of the &amp; symbol.&nbsp;<br />Test of the&nbsp;&lt; symbol.</span>

When I click the Apply button and close the dialog, grabbing the Value (Dialog.value) gives me the following:

<html><span style="font-size: 16pt">Test of the & symbol. <br />Test of the &lt; symbol.</span></html>
As you can see the < character is properly encoded as &lt; but the & character is not encoded.  This is causing an error in other places.  How can I get the & character to be returned as &amp; from the dialog? 

 

 

Unplanned
Last Updated: 04 Dec 2019 11:27 by ADMIN
Created by: Jim
Comments: 0
Category: Forms/Dialogs/Templates
Type: Bug Report
4

Set one of the monitors to use 125% DPI scaling. Start the attached project on a monitor with 100% DPI scaling - the form is expected to be with size 400,400. Move the form to the monitor with 125% DPI scaling. You are expecting the form's size to be 500,500, but it is 507,521. Please refer to the screenshots.

Workaround:

Override the RadForm.ScaleControl method as follows:

    Protected Overrides Sub ScaleControl(factor As SizeF, specified As BoundsSpecified)
        Dim initialSize As Size = Me.Size
        MyBase.ScaleControl(factor, specified)
        Me.Size = TelerikDpiHelper.ScaleSize(initialSize, factor)
    End Sub

Completed
Last Updated: 25 Jul 2019 14:46 by ADMIN
Release R3 2019 (LIB 2019.2.729)

Please run the attached sample project. 

1. Click the Child Form button.

2. Maximize the MDI child form either by clicking the maximized button or by double-clicking the title bar.

You will notice that there is an empty space between the docked command bar and the top edge of the form.

 

Unplanned
Last Updated: 08 Apr 2019 08:07 by ADMIN

Create a brand new project and add a ShapedForm. Please follow the steps illustrated in the attached gif file.

Completed
Last Updated: 04 Apr 2019 15:29 by Dimitar
Release R2 2019 (LIB 2019.1.408)
Created by: George C.
Comments: 2
Category: Forms/Dialogs/Templates
Type: Bug Report
2
I want to use supported html tags in my radmessagebox . When the messagebox is shown for the first time , everything is ok.
But there is a problem when the messagebox is shown for the second time :



when I click the same button that shows the messagebox ( for the second time ), the messagebox's width increases for no reason.



I attached a picture that illustrates the messagebox shown for the second time.

P.S I tested the radmessagebox without html tags , everything works fine. Whatever the problem cause is , it is related to html tags.
Completed
Last Updated: 28 Feb 2018 14:33 by ADMIN
To reproduce:
- Add shaped form with some buttons to a DPI-aware application.
- Start it on an HDPI monitor.
- The form is not scaled. 

Workaround:
protected override void OnLoad(EventArgs e)
{
    base.OnLoad(e);

    Screen showScreen = Screen.FromControl(this);
    SizeF scale = NativeMethods.GetMonitorDpi(showScreen, NativeMethods.DpiType.Effective);
    var currentDpi = (int)Math.Round(scale.Width * 96f, MidpointRounding.AwayFromZero);

    if (scale.Width != 1)
    {
        var fi = typeof(ShapedForm).GetField("currentDpi", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic);
        fi.SetValue(this, currentDpi);
        var mi = typeof(ShapedForm).GetMethod("HandleDpiChanged", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic);
        mi.Invoke(this, null);
    }
}

Completed
Last Updated: 15 Aug 2016 07:57 by Svetlin
Created by: Svetlin
Comments: 0
Category: Forms/Dialogs/Templates
Type: Bug Report
1
The shape defined at design-time is not generated correctly. Hence, the shape is not applied to the Form.
Unplanned
Last Updated: 30 Mar 2016 13:45 by ADMIN
ADMIN
Created by: Dimitar
Comments: 0
Category: Forms/Dialogs/Templates
Type: Bug Report
1
To reproduce:
public Form1()
{
    InitializeComponent();
  
    RadButton bt = new RadButton();
    bt.Dock = DockStyle.Right;
    bt.Parent = this;

    RadTitleBar tb = new RadTitleBar();
    tb.Dock = DockStyle.Top;
    tb.Parent = this;
    tb.Size = new Size(150, 100);

    this.Shape = new RoundRectShape(20);
    this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;    
} 
Unplanned
Last Updated: 30 Mar 2016 13:44 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: Forms/Dialogs/Templates
Type: Bug Report
0

			
Completed
Last Updated: 07 Mar 2014 07:07 by ADMIN
1. Add RadTitleBar 
2. Set Image, ImageClicked and ImageHovered of RadImageButtonElement by 'Edit UI Elements' (design time).
3. Run project and hover or click image and will see that image is not shown.
Completed
Last Updated: 14 Jan 2013 03:05 by ADMIN
The RadTitleBar shows incorrect title when the theme is Aqua. If you set the Form.Text to "Text(text)", the RadTitleBar will show "(Text(text".

Work Around - Turn off RightToLeft of the TitlePrimitive.
For example:
C#
this.FormElement.TitleBar.TitlePrimitive.RightToLeft = false;
Completed
Last Updated: 14 Jun 2010 09:14 by Deyan
Created by: Deyan
Comments: 0
Category: Forms/Dialogs/Templates
Type: Bug Report
0
RadTitleBar's system buttons are active while in the VSB and thus can close/minimize the VSB main form.
Completed
Last Updated: 20 Apr 2010 15:53 by ADMIN
When the visibility property of the Minimize and Maximize system buttons in the RadtitleBar control are set to Hidden/Collapsed, they remain visible.