Declined
Last Updated: 20 Feb 2014 09:58 by ADMIN
- the initial object property value is not displayed
- the color change is not always reflected, even though the object implements INotifyPropertyChanged

Adding the binding in code works correctly.
Completed
Last Updated: 06 Aug 2010 06:03 by ADMIN
1. Bind the grid to something with more than one level hierarchy
2. Remove some child column in property builder
3. Close and open VS2008
4. In the property builder the same column that was removed, appears with the check box checked (and it shouldn't be). But when the application starts the column does not appear in the grid(which is right).
5. Open property builder again, and remove another column
6. Start the application again, the column that we have just removed is gone, as it should, but the first column appears.

Same scenario appears when using the designer.
Completed
Last Updated: 01 Oct 2014 13:00 by ADMIN
ADMIN
Created by: Dimitar
Comments: 1
Category: UI for WinForms
Type: Feature Request
0
To reproducce:
- Try to search with the following code:

SearchResult searchResult = this.radPdfViewer1.Document.TextSearch.Find("domain model");
if (searchResult.Result != null)
{
    this.radPdfViewer1.Select(searchResult);
}

Workaround:
- Use reflection:
PropertyInfo property = typeof(Telerik.Windows.Documents.Fixed.Model.RadFixedDocument).GetProperty("TextSearch", BindingFlags.Instance | BindingFlags.NonPublic);
Type propType = property.PropertyType;

MethodInfo findMethod = propType.GetMethod("Find", BindingFlags.Instance | BindingFlags.Public);

SearchResult searchResult = (SearchResult)findMethod.Invoke(property.GetValue(this.radPdfViewer1.Document, null),
    new object[] { "EditorRequired", TextSearchOptions.Default });

if (searchResult.Result != null)
{
    this.radPdfViewer1.Select(searchResult);

}
Completed
Last Updated: 01 Oct 2014 11:52 by ADMIN
Create a Telerik.Analytics.dll assembly which will reference the EQATEC.Analytics instead of direct reference the EQATEC in Telerik.WinControls.dll. This should avoid the warnings in the installator programs.
Unplanned
Last Updated: 30 Mar 2016 14:01 by ADMIN
To reproduce:

Create a RadForm and add a RadButton. Open the Element Hierarachy Editor and set the ShowBorder of the RadButtonElement to false. Another way is to set the ShowBorder property through the Properties section in Visual Studio. Save the form, close it and reopen it. You will see that the border is shown  and the property is set to true.

Workaround:

Set the value at runtime:

this.radButton1.ButtonElement.ShowBorder = false;
Completed
Last Updated: 27 Nov 2014 17:08 by ADMIN
Completed
Last Updated: 24 Jul 2015 09:37 by sajeev ks
To Reproduce: 
1. Install Q2 2015 (version 2015.2.623) of Telerik UI Winforms on PC with Visual Studio 2008 
2. Start the VS2008 and create new VB Winforms project 
3. Drag and drop from toolbox any control (RadButton or RadGridView). 
4. Open smart tag and click Edit UI Elements 
5. Message box with error is shown 

Workaround: 
If is possible use Visual Studio 2010 or higher version.
Completed
Last Updated: 08 Mar 2018 07:20 by Dimitar
Declined
Last Updated: 17 Nov 2015 14:30 by ADMIN
To reproduce: 
1. Drag and drop RadPageView on the form
2. Add 2-3 pages 
3. Set the ViewType to Backstage
4. Open smart tag and press Delete key to edit the Item Area Width property. 
After pressing the key, the RadPageView is removed from form.  

The issue is observed in Visual Studio 2015 only. 
Declined
Last Updated: 26 Jan 2016 10:37 by ADMIN
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.
Completed
Last Updated: 15 Oct 2018 06:02 by ADMIN
How to reproduce: test the attached project with the latest version on a Windows 7 machine, notice that the font sizes are scaled, test the project with assemblies before  R2 2017 the fonts are not scaled

The issue is observed even with the RadControl.EnableDpiScaling property set to false. It would be expected that if the property was set to false, that the fonts would not be increased.

Workaround: change the fonts for each of the controls individually, the scaling can be calculated this way:
  Protected Overrides Sub OnShown(e As EventArgs)
        MyBase.OnShown(e)

        Dim dpi = NativeMethods.GetSystemDpi()
        Dim scale = dpi.X / 96.0
    End Sub
Completed
Last Updated: 10 Apr 2018 13:57 by Dimitar
How to reproduce:
this.radTrackBar1.LabelStyle = Telerik.WinControls.UI.TrackBarLabelStyle.TopLeft;
this.radTrackBar1.TickStyle = Telerik.WinControls.Enumerations.TickStyles.TopLeft;

Workaround:
this.radTrackBar1.LabelStyle = Telerik.WinControls.UI.TrackBarLabelStyle.TopLeft;
this.radTrackBar1.TrackBarElement.BodyElement.ScaleContainerElement.BottomScaleElement.Visibility = ElementVisibility.Collapsed;
Completed
Last Updated: 15 Mar 2018 11:27 by ADMIN
Workaround: create the ThemableColor this way

SetBordersCommandParameter bordersParam = new SetBordersCommandParameter();
System.Drawing.Color color = Color.Blue;
System.Windows.Media.Color mediaColor = System.Windows.Media.Color.FromArgb(color.A, color.R, color.G, color.B);
bordersParam.BorderColor = new ThemableColor(mediaColor);
Unplanned
Last Updated: 21 May 2018 06:43 by ADMIN
How to reproduce: 
1. Use the following code to change the default style of the document:
StyleDefinition h2 = this.radRichTextBox.Document.Style;
h2.SpanProperties.FontFamily = new System.Windows.Media.FontFamily("Microsoft Sans Serif");
h2.SpanProperties.FontSize = Unit.PointToDip(8.25f);
h2.ParagraphProperties.SpacingAfter = 0;

h2 = radRichTextBox.Document.Style;
h2.SpanProperties.FontFamily = new System.Windows.Media.FontFamily("Microsoft Sans Serif");
h2.SpanProperties.FontSize = Unit.PointToDip(8.25f);
h2.ParagraphProperties.SpacingAfter = 0;

StyleDefinition hyperlinkStyle = this.radRichTextBox.Document.StyleRepository["Hyperlink"];
hyperlinkStyle.SpanProperties.FontFamily = new System.Windows.Media.FontFamily("Microsoft Sans Serif");
hyperlinkStyle.SpanProperties.FontSize = Unit.PointToDip(8.25f);

2. Add some text to the document

3. Add a hyperlink somewhere in the middle of the text

4. Start moving the caret so it moves over the hyperlink start

Observed: When on hyperlink start/end, the caret is with bigger size than the content

Expected: The caret should be with the size of the content
Completed
Last Updated: 23 Jul 2018 09:47 by Dimitar
ADMIN
Created by: Dimitar
Comments: 0
Category: UI for WinForms
Type: Bug Report
0
To reproduce:
public RadForm1()
{
    InitializeComponent();
    var a = new Author(null, "John");
    for (int i = 0; i < 20; i++)
    {
        radChat1.AddMessage(new ChatTextMessage("Item" + i, a, DateTime.Now.AddDays(-(20 - i))));
    }
    new Telerik.WinControls.RadControlSpy.RadControlSpyForm().Show();

    this.radChat1.ChatElement.MessagesViewElement.TimeSeparatorInterval = TimeSpan.FromDays(1);
}

You will notice that there is today in several places. 

Workaround:
this.radChat1.ChatElement.MessagesViewElement.TimeSeparatorInterval = TimeSpan.Zero;

var a = new Author(null, "Forest Gump");
for (int i = 0; i < 20; i++)
{
    radChat1.AddMessage(new ChatTextMessage("Item" + i, a, DateTime.Now.AddDays(-(20 - i))));

    ChatTimeSeparatorDataItem separator = new ChatTimeSeparatorDataItem(new ChatTimeSeparatorMessage(DateTime.Now.AddDays(-(20 - i))));
    radChat1.ChatElement.MessagesViewElement.Items.Add(separator);
}

Completed
Last Updated: 09 Jul 2018 10:05 by Dimitar
ADMIN
Created by: Hristo
Comments: 0
Category: UI for WinForms
Type: Feature Request
0