Unplanned
Last Updated: 25 Jul 2024 12:04 by ADMIN

To reproduce:

1. Add three SplitPanels in horizontal mode.

2. Use the following code snippet.

3. Drag the second splitter upwards. It changes the height on the first panel

void RadForm1_Load(object sender, EventArgs e)
{
    FixHeight(splitPanel1);
    FixHeight(splitPanel3);
}

public static void FixHeight(SplitPanel panel)
{
    panel.SizeInfo.MinimumSize = new Size(0, 55);
    panel.SizeInfo.MaximumSize = new Size(0, 55);
}

 

Unplanned
Last Updated: 25 Jul 2024 09:50 by ADMIN
We should enable the out-of-process designer in .NET Framework projects so that old third party 32-bit and ActiveX/COM controls can be loaded inside Visual Studio 2022.
Unplanned
Last Updated: 17 Jul 2024 12:57 by ADMIN
In this case, we have 2 providers. The first one is regular OpenStreetMap and the second one with a different ImageURL address is rendered on top. The tile images downloaded from the second provider are transparent. However, this transparency is not respected from the control and the transparent areas are drawn with black color. 
Unplanned
Last Updated: 15 Jul 2024 14:00 by Dan
Created by: Francois
Comments: 4
Category: Map
Type: Feature Request
2
 
Unplanned
Last Updated: 15 Jul 2024 09:52 by ADMIN
Created by: Dan
Comments: 1
Category: Map
Type: Bug Report
0

In this case, we have missing image tiles while zooming and scrolling the map. When downloading a tile, the internal WebClient is returning an error with the following message: The server committed a protocol violation. Section=ResponseStatusLine. The WebException does not have a Response. This scenario is not handled in code which will lead to missing image tiles. Zooming the same area will reload the missing tiles, but still, it should be handled in the source code.

Unplanned
Last Updated: 12 Jul 2024 09:01 by ADMIN

Any anchor setting works, except for right + left, then the controls start to behave weird. 

this.radMultiColumnComboBox4.Anchor = AnchorStyles.Left | AnchorStyles.Right;
this.radTextBoxControl2.Anchor = AnchorStyles.Left | AnchorStyles.Right;
this.radSpinEditor4.Anchor = AnchorStyles.Left | AnchorStyles.Right;
this.radDropDownList4.Anchor = AnchorStyles.Left | AnchorStyles.Right;

this.radMultiColumnComboBox3.Anchor = AnchorStyles.Left | AnchorStyles.Right;
this.radDropDownList3.Anchor = AnchorStyles.Left | AnchorStyles.Right;
this.radSpinEditor3.Anchor = AnchorStyles.Left | AnchorStyles.Right;
this.radTextBoxControl1.Anchor = AnchorStyles.Left | AnchorStyles.Right;

Unplanned
Last Updated: 08 Jul 2024 10:18 by ADMIN
Created by: Dev
Comments: 1
Category: TreeView
Type: Bug Report
0

In this particular case, the control is populated with 100 000. When all items are selected and we click on a single note all other items will be de-selected. This operation takes more time than expected. The de-selection process must be improved.

Unplanned
Last Updated: 03 Jul 2024 14:06 by ADMIN
In this case, we have a multiview RadCalendar with 1 column and 3 rows. Clicking on the move forward button will move the months with 1. Clicking on the move back will jump more than 1 months.
Unplanned
Last Updated: 02 Jul 2024 13:58 by ADMIN

In this case, we filter a column by typing in a filter cell. If we have a horizontal scroll move the filter cell out of the view and then go back to it and try to change the value of the filter cell, the editor has an empty string.

Unplanned
Last Updated: 02 Jul 2024 12:18 by ADMIN

In the above image, the height of the control is not calculated correctly in the Windows 11 theme. In addition, the Details arrow button overlaps the text.

 

Unplanned
Last Updated: 27 Jun 2024 08:38 by ADMIN
Created by: Micah
Comments: 1
Category: DropDownList
Type: Feature Request
1
 
Unplanned
Last Updated: 25 Jun 2024 14:21 by ADMIN

When RadPdfViewer is in text selection mode and the user is trying to select a word by double-clicking on it, the last letter of the word is not selected when the word is followed by some symbols like '.', ':', '(', '...'

Also, the CaretPosition is not correct.

Unplanned
Last Updated: 20 Jun 2024 12:11 by ADMIN
When floating image is anchored to the first position of the first paragraph on a page, and there are some empty paragraph on the previous page, sometimes the image is positioned on the previous page instead of along the paragraph.
Unplanned
Last Updated: 20 Jun 2024 12:11 by ADMIN
Created by: Andrew
Comments: 1
Category: RichTextEditor
Type: Feature Request
0
This element is used to collect shapes and groups so they can be positioned and transformed as a single unit. A group contains group, shapetype, shape, pre-defined shape - arc, curve, image, line, oval, polyline, rect, roundrect - and lock elements.

When the object is serialized out as XML, its qualified name is v:group.
Unplanned
Last Updated: 19 Jun 2024 07:32 by ADMIN
Created by: Toby
Comments: 1
Category: UI for WinForms
Type: Feature Request
1
The default behavior is to auto ellipsis at the end of a long text. This functionality can be extended so that the user can choose where to auto-ellipsis the text: at the beginning, at the center, at the end, .etc.
Unplanned
Last Updated: 18 Jun 2024 10:16 by ADMIN
In this scenario, a new archive is created in code and two files are added to the archive. The archive is protected with a password. When trying to open the file inside and typing the correct password, a message appears with a text that the typed password is incorrect.
Unplanned
Last Updated: 17 Jun 2024 13:51 by ADMIN
The command tabs collection in the RichTextEditorRibbonBar is not intended to be modified design time. The EditCommandTabs option in the smart tag should not be available. This collection is recreated the moment you close and reopen the designer. The same will happen when you run the application. This option should be removed from the smart tag.
Unplanned
Last Updated: 12 Jun 2024 08:17 by Ken
If you type =sum( and leave it at that, then go into the column and start pressing Shift+click to start selecting a range, it throws an error. 
Unplanned
Last Updated: 10 Jun 2024 13:33 by ADMIN
Created by: Manikanta
Comments: 1
Category: UI for WinForms
Type: Feature Request
0

Hi All.

Could you please add or let me know locators for "RadChat" window for Automation purpose. I am unable to find locators on the below area.

 

Unplanned
Last Updated: 10 Jun 2024 13:25 by ADMIN

To reproduce the issue:
1. Add a RadDateTimePicker control to a Windows Forms application.
2. Use the "ar-SA" culture.
3. Attempt to manually enter a date in the RadDateTimePicker control using letters or special characters.

Dim hijriCulture As New CultureInfo("ar-SA")
hijriCulture.DateTimeFormat.Calendar = New HijriCalendar()
RadDateTimePicker1.Format = DateTimePickerFormat.Custom
RadDateTimePicker1.Culture = hijriCulture

1 2 3 4 5 6