Completed
Last Updated: 23 Mar 2020 09:54 by ADMIN
Release R2 2020 (LIB 2020.1.323)
Created by: Theo
Comments: 3
Category: UI for WinForms
Type: Bug Report
1

Morning

 

Please see attched demo project

 

We have several controls that we use spell checker on (including textbox, grid, combo, etc)

Issue is that if you have a misspelled word in a control that is readonly, you are still able to change the text via context menu to update the spelled word

In the example program, start up, click on make readonly, right click on wavy red line word, select option to replace with, word is updated.

We are not able to disable the controls and toggle between read only and not readonly to define editablility of the controls

Is there a work around for this? Should it not be inlcuded in the spell check control?

 

thank you

Theo

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.
Completed
Last Updated: 27 Apr 2020 07:46 by ADMIN
Release R2 2020

Please refer to the following code snippet and follow the steps in the attached gif file:

 

        Dim dt As New DataTable
        dt.Columns.Add("Id", GetType(Integer))
        dt.Columns.Add("Name", GetType(String))
        For index = 1 To 10
            dt.Rows.Add(index, "Data" & index & Guid.NewGuid().ToString())
        Next
        Me.RadMultiColumnComboBox1.DataSource = dt
        Me.RadMultiColumnComboBox1.DisplayMember = "Name"
        Me.RadMultiColumnComboBox1.ValueMember = "Id"
        Me.RadMultiColumnComboBox1.AutoSizeDropDownToBestFit = True

Workaround: 

AddHandler Me.RadMultiColumnComboBox1.DropDownOpened, AddressOf RadMultiColumnComboBox_DropDownOpened

    Private Sub RadMultiColumnComboBox_DropDownOpened(sender As Object, e As EventArgs)
        Me.RadMultiColumnComboBox1.EditorControl.HorizontalScrollState = ScrollState.AutoHide
    End Sub

Completed
Last Updated: 27 Apr 2020 07:43 by ADMIN
Release R2 2020
When a cell has DBNull.Value or null, its value is not read by Narrator since it is considered as empty string. In this case, the NullValue property of the column should be considered.
Completed
Last Updated: 03 Jun 2020 16:31 by ADMIN
Release R2 2020 SP1 (LIB 2020_2_603)

merging only these assembly still the icons are not visible in Spreadsheet ribbon menu

C:\Program Files (x86)\Microsoft\ILMerge\ILMerge.exe" /allowdup /target:SymphonyMESUtil.exe  /targetplatform:"v4, C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1" /out:Merge\SymphonyMESUtil.exe ^
SymphonyMESUtil.exe ^
Telerik.WinControls.dll ^
Telerik.WinControls.UI.dll ^
TelerikCommon.dll ^
Telerik.WinControls.GridView.dll ^
Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml.dll ^
Telerik.Windows.Documents.Spreadsheet.FormatProviders.Pdf.dll ^
Telerik.Windows.Documents.Spreadsheet.dll ^
Telerik.WinControls.RadSpreadsheet.dll ^
Telerik.Windows.Documents.Core.dll ^
Telerik.Windows.Documents.Fixed.dll

Completed
Last Updated: 26 Oct 2020 12:41 by ADMIN
Release R3 2020 SP1

If you have two RadGridView controls and you want to export both of the grids to a common file on two different sheets, it is suitable to use FileExportMode.NewSheetInExistingFile. However, when using the export overload to a stream doesn't respect the ExportMode.

Workaround: use exporting to a file:

            string exportFile = @"..\..\exportedData.xlsx";
            GridViewSpreadStreamExport spreadStreamExport = new GridViewSpreadStreamExport(this.radGridView1);
            spreadStreamExport.FileExportMode = FileExportMode.NewSheetInExistingFile;
            spreadStreamExport.ExportVisualSettings = false;
            spreadStreamExport.RunExport(exportFile, new SpreadStreamExportRenderer());

 

Completed
Last Updated: 01 Sep 2020 12:25 by ADMIN
Release R3 2020
OpenClipboard Failed (Exception from HRESULT: 0x800401D0 (CLIPBRD_E_CANT_OPEN))
Unplanned
Last Updated: 24 Aug 2020 07:46 by ADMIN
Provide support for inserting a Spreadsheet control as in  MS Word.
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().

 

Completed
Last Updated: 02 Feb 2023 09:38 by ADMIN
Release R1 2023
Completed
Last Updated: 07 Oct 2020 15:54 by ADMIN
Release R3 2020 SP1

Run the application at 150% and maximize the form. You will notice that with R3 2020 the split container overlaps with the status strip at the bottom:

Workaround: instead of setting the Anchor property to all sides, set the Dock property to Fill.

Completed
Last Updated: 19 May 2022 14:24 by ADMIN
Release R2 2022 SP1
Created by: Stoyan
Comments: 0
Category: UI for WinForms
Type: Bug Report
1

The solution in this KB article is used: https://docs.telerik.com/devtools/winforms/knowledge-base/clickonce-application-is-broken 

Follow the steps:

1. Set your main monitor to be with higher than 100% DPI scaling (e.g. 175%, 200%)

2. Set the secondary monitor with 100% DPI scaling.

3. Run the exe from the project on the secondary monitor with 100% DPI scaling. You will notice that all controls that host the standard MS TextBox are incorrectly scaled:

 

Completed
Last Updated: 15 Dec 2020 13:33 by ADMIN
Release R1 2021
Created by: Vishal
Comments: 0
Category: UI for WinForms
Type: Feature Request
1

Add an opportunity to use custom fonts in Html-like text formatting.

Example:

this.radTreeView1.Nodes.Add("<html><font="Roboto Medium">Node Strike</font></html>");

 

Completed
Last Updated: 15 Dec 2020 09:20 by ADMIN
Release R1 2021 (LIB 2020.3.1215)

Clicking on a tab item in the design surface should select the tab. The animation demonstrates the current behavior:

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 

Completed
Last Updated: 23 Dec 2020 16:08 by ADMIN
Release R1 2021
Only the theme components which are dragged and dropped onto the form should be listed in the ThemeNameEditor. Currently themes added on other forms are also available which is incorrect because at run-time this theme may not be instantiated at all.
Unplanned
Last Updated: 23 May 2023 10:50 by ADMIN
Created by: test
Comments: 2
Category: UI for WinForms
Type: Feature Request
1
We want a query builder who can connect to any type of connection type database like (MS SQL, MySQL, Oracle etc) & create a query from end user which can be used by our application.

The control should be user friendly enough that a non SQL person can create query.
Completed
Last Updated: 26 Mar 2021 09:19 by ADMIN
Release R2 2021 (LIB 2021.1.329)
There is an inconsistency between MS Word and the RichTextEditor.

When the unit type is set to an inch.
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)
Completed
Last Updated: 29 Nov 2021 11:16 by ADMIN
Release R1 2022
Created by: Al
Comments: 1
Category: UI for WinForms
Type: Feature Request
1
Request read only property on the RadMultiColumnComboBox control