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: 10 Jul 2018 14:54 by Dimitar
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: UI for WinForms
Type: Bug Report
1
Note: other operations that affect the image's size should also handle large images.

No Workaround.

It is possible to create a custom resize dialog as follows:
        public class MyRadImageEditor : RadImageEditor
        {
            protected override RadImageEditorElement CreateImageEditorElement()
            {
                return new MyRadImageEditorElement();
            }
        }

        public class MyRadImageEditorElement : RadImageEditorElement
        {
            public override void ShowResizeDialog()
            {
                this.ShowDialog(typeof(MyResizeDialog));
            }
        }

        public class MyResizeDialog : RadForm
        {
            public MyResizeDialog(RadImageEditorElement imageEditorElement)  
            {
               
            }

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

			
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: 16 Mar 2018 11:26 by Dimitar
To reproduce:
- Add RadLayoutControl to a form.
- Change the Language property at design time.
- You will receive the following message: There is already a command handler for the menu command '1496a755-94de-11d0-8c3f-00c04fc2aae2 : 103'. 

Workaround:
- Reopen the designer.
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);
Completed
Last Updated: 08 Mar 2018 07:20 by Dimitar
Completed
Last Updated: 22 Jan 2018 13:35 by Dimitar
To reproduce:
- Open the Element Hierarchy Editor and resize it.

Completed
Last Updated: 25 Apr 2017 11:21 by ADMIN
Completed
Last Updated: 30 May 2016 13:53 by ADMIN
One should be able to export to a stream instead to a file as well.
Completed
Last Updated: 17 Dec 2015 12:26 by ADMIN
RadControls are slow when using at design time in a form containing a lot of controls, split containers and table layout panels
Completed
Last Updated: 09 Sep 2015 11:51 by ADMIN
1.Drag a RadGridView to a form
    2.Click Dock in parent from its SmartTag menu
    3.Now change the Dock to None from the Properties window
    4.Open again the smart tag and you will see that the link's text is "Undock in parent container" but the control is not docked.

The same issue occurs with all controls that have "Dock in parent container" action link.
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: 01 Jun 2015 11:23 by ADMIN
Completed
Last Updated: 21 May 2015 08:11 by ADMIN
As workaround please, rename the controls with Find & Replace from VS Editor.
Completed
Last Updated: 27 Nov 2014 17:08 by ADMIN
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.