Unplanned
Last Updated: 24 Jan 2022 16:56 by ADMIN
As a workaround, you can hide the items at run time using code.
Unplanned
Last Updated: 07 Dec 2021 11:10 by ADMIN

Write an Appium test that validates radGridViews' empty cell Text

You will see that the Text property contains the following information: "Row x Column y Value z"

x = row of the cell
y = column of the currently selected cell
z = value of the currently selected cell

instead of simply being either null or an empty string.


 

Workaround:

Instead of validating cell[index].Text, validate cell[index].GetAttribute("Value.Value").

Unplanned
Last Updated: 10 Nov 2021 14:41 by ADMIN
Created by: n/a
Comments: 0
Category: UI for WinForms
Type: Bug Report
1

The writing-mode attribute is ignored when rendering RadSvgImage. 
Here is a sample SVG:

<svg width="200" height="200" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
    <text style="font-size:20px;writing-mode:tb;" x="30" y="30">
        Vertical text
    </text>
    <text style="font-size:20px;writing-mode:vertical-lr;" x="50" y="50">
        Text 2
    </text>
</g>
</svg>
RadSvgImage renders horizontal text:


The Edge browser renders it correctly:
image

 

 

Unplanned
Last Updated: 21 Oct 2021 06:39 by ADMIN
Created by: Dave
Comments: 4
Category: UI for WinForms
Type: Feature Request
0
This aggregate function should count all the distinct values.
Unplanned
Last Updated: 09 Sep 2021 13:50 by ADMIN

1. Create a Winforms application containing RichTextEditorRibbonBar

2. Add a CodedUI test project

3. Start the application and add a new CodedUITest

4. Drag the Spy from the "UIMap - Coded UI Test Builder" onto a disabled radButtonElement - for example "Delete All" button in the "Review" tab

 

You will see that the Enabled property value is true instead of false.

Unplanned
Last Updated: 13 Apr 2021 07:02 by ADMIN
Created by: Lou
Comments: 1
Category: UI for WinForms
Type: Feature Request
2
Please add support for adding a background image to the RadDiagram. This could be used for example for a floor plan application, where the background image would be a map of a building.
Unplanned
Last Updated: 12 Mar 2021 14:36 by ADMIN
Default FontFamily and FontSize values (Calibri, 11) are not respected during paste, when the normal style of the source document is modified. Those values are replaced with the default values for RadDocument, which are different (Verdana 12)
Unplanned
Last Updated: 11 Dec 2020 10:12 by ADMIN

It would be good to offer default localization providers for some languages like German, Spanish, French, etc.

It is possible to use the following site that Microsoft provides for this purpose: https://www.microsoft.com/en-us/language 

Unplanned
Last Updated: 27 Oct 2020 10:25 by ADMIN

Hi, I would like to use the conversion tool to convert a WinForms project to Telerik controls. Unfortunately the menu item is not showing up for me. See attached screenshot. 

The project to be converted does include a reference to System.Windows.Forms. I am using VS2019 with the latest Telerik Winforms release. 

Thanks,

-Lou

Unplanned
Last Updated: 26 Aug 2020 09:01 by ADMIN
Created by: Sunny
Comments: 1
Category: UI for WinForms
Type: Bug Report
1

I'm trying to initialize RadControlSpyForm in a .NET 2.0 application and it throws the following exception:

System.InvalidCastException: 'Unable to cast object of type 'System.Windows.Forms.SplitContainer' to type 'System.ComponentModel.ISupportInitialize'.

I did some research, and I found that since SplitContainer doesn't inherit from System.ComponentModel.ISupportInitialize until .NET 4.0, this message shows up in solutions where a project is downgraded from .NET 4.0, but the Form designer isn't regenerated to remove the SplitContainer cast to ISupportInitialize to call BeginInit() and EndInit().

 

Unplanned
Last Updated: 24 Aug 2020 07:46 by ADMIN
Provide support for inserting a Spreadsheet control as in  MS Word.
Unplanned
Last Updated: 20 Jul 2020 11:36 by ADMIN
Created by: Patrick
Comments: 0
Category: UI for WinForms
Type: Feature Request
2
JavaScript actions cause a script to be compiled and executed by the JavaScript interpreter. Depending on the nature of the script, the values of the interactive form fields in the document can be validated or updated or the visual appearances of the fields can be changed.
Unplanned
Last Updated: 29 May 2020 07:52 by ADMIN

Submitted on customer behalf:

https://photos.app.goo.gl/ZsxVkRkXdQz7KcDf6

The problem, as described in the video, is that the thumb does not 'snap' to the point touched and then follow the touch as it is dragged. It is therefore difficult at times to actually 'grab' hold of the thumb unless you touch the screen in exactly the right point.

Changing the 'SnapToTicks' property purely makes the movement smoother once it is grabbed.


Unplanned
Last Updated: 12 May 2020 11:10 by ADMIN

When the RadMap.ShowSearchBar property is set to true and the BingRestMapProvider is used, it would be nice to have autocomplete suggestion while the user is typing:

https://docs.microsoft.com/en-us/bingmaps/rest-services/autosuggest

Unplanned
Last Updated: 04 May 2020 14:19 by ADMIN
Currently, ScatterSeries and ScatterLineSeries don't support null values.
Unplanned
Last Updated: 28 Apr 2020 11:18 by ADMIN

1. Set the DPI of your main monitor to 150% and the DPI of your secondary monitor to 100%.

2. Start your main form containing RadDataEntry on your secondary monitor.

You will see that that hosted controls inside RadDataEntry are not scaled correctly.

 

Workaround:

Start your main form on your secondary monitor inside OnShown event.

protected override void OnShown(EventArgs e)
{
    base.OnShown(e);

    this.Location = new Point(-800, 100);
}

 

Unplanned
Last Updated: 23 Apr 2020 15:34 by ADMIN
Created by: Tinus
Comments: 0
Category: UI for WinForms
Type: Bug Report
2

1. Set HDPI on your monitor (for example 150%)

2. Set RadDataEntry data source in RunTime

You will see that RadDataEntry hosted controls are not scaled correctly.

Note that there is a related problem if the data source is set in design time. Controls themselves will be scaled correctly, however, text box hosted control's High will not be scaled correctly.

Workaround:
You can subscribe to ItemInitializing event before you set the DataSource and proceed by scaling RadDataEntry hosted controls manually as shown in the following code snipped.

private void radButton1_Click(object sender, EventArgs e)
{
    this.radDataEntry1.ItemInitializing += RadDataEntry1_ItemInitializing;
    this.radDataEntry1.ItemDefaultSize = new Size(200, 26);

    radDataEntry1.DataSource = new Employee
    {
        FirstName = "Sarah",
        LastName = "Blake",
        Occupation = "Supplied Manager",
        StartingDate = new DateTime(2005, 04, 12),
        IsMarried = true,
        Salary = 3500,
        Gender = Gender.Female
    };         
}
private void RadDataEntry1_ItemInitializing(object sender, ItemInitializingEventArgs e)
{
    if (this.radDataEntry1.RootElement.DpiScaleFactor.Width != 1)
    {
        foreach (Control control in e.Panel.Controls)
        {
            control.Scale(this.radDataEntry1.RootElement.DpiScaleFactor);
        }
    }
}

Unplanned
Last Updated: 14 Apr 2020 15:26 by ADMIN

Please refer to the attached sample project and gif file. The ShouldCheckDataRows property of the column is disabled. Hence, the developer will manage the toggle state of the data cells.

There are two problems here:

1. In the HeaderCellToggleStateChanged event we toggle all data rows in correspondence with the header checkbox. Once a data cell value is changed, we set the GridViewCheckBoxColumn.Checked property to Off. However, it is not respected and the header checkbox still remains toggle.

2. Once you scroll the columns horizontally, the header checkbox synchronizes with the value of the GridViewCheckBoxColumn.Checked property. However, all of a sudden the HeaderCellToggleStateChanged event is toggled again even though we didn't clicked the checkbox in the header at all. This will make all data cells unchecked due to the code in the HeaderCellToggleStateChanged event.

Unplanned
Last Updated: 09 Apr 2020 07:39 by ADMIN

Please refer to the provided sample gif file. You will notice that when you are dragging within the same RadGridView control, there is a horizontal line indicating the drop position. The image is controlled by the RadGridView.TableElement.RowDragHint property which specifies the horizontal line illustrating the drop position.

This horizontal line is missing when you drop over another target grid control.

Unplanned
Last Updated: 27 Mar 2020 07:50 by ADMIN
In MergeFields the general switch may be used to format the Result Text. The text may appear in lowercase, uppercase, title case and so on.