In Development
Last Updated: 25 Jul 2024 14:47 by ADMIN
Scheduled for 2024 Q3 (August)
In this particular case, we have RadSyntaxEditor control and MS Button. The MS Button have mnemonic text: "&OK". When the RadSyntexEditor control editor is focused and we press the O button, the Click event of the MS Button is triggered. This way we can't press the O key while RadSyntaxEditor control is focused.
In Development
Last Updated: 25 Jul 2024 14:47 by ADMIN
Scheduled for 2024 Q3 (August)
The tooltip text of the font and font size DropDownListElements is not localized.
In Development
Last Updated: 25 Jul 2024 14:46 by ADMIN
Scheduled for 2024 Q3 (August)
In this particular case, the RadScheduler is integrated with the RadGanttView. When the controls are loading there is a moment when the RadGanttView control is not fully loaded and its children elements are measured. In that case, DivideByZero exception will be thrown as the Children.Count of the RadGanttView is used in the size calculations. 
In Development
Last Updated: 25 Jul 2024 14:46 by ADMIN
Scheduled for 2024 Q3 (August)
The ToolStrip inside the AutoHidePopup is not disposed
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);
}

 

In Development
Last Updated: 25 Jul 2024 11:37 by ADMIN
Scheduled for 2024 Q3 (August)

The selected date is 2024 Feb 29. A custom date format is applied to the control:

this.radDateTimePicker1.Format = DateTimePickerFormat.Custom;
this.radDateTimePicker1.CustomFormat = "yyyy";

When trying to change the date, an ArgumentOutOfRangeException exception is thrown.

 

 

 

In Development
Last Updated: 25 Jul 2024 10:12 by ADMIN
Scheduled for 2024 Q3 (August)
In this particular case, the connections are added runtime which triggers the exception when the TipOverTree is routing is used.
In Development
Last Updated: 25 Jul 2024 08:27 by ADMIN
Scheduled for 2024 Q3 (August)
Please refer to the attached gif file.

Workaround: close manually the drop down list when the auto-complete popup is shown:

    this.radDropDownList1.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
    this.radDropDownList1.DropDownListElement.AutoCompleteSuggest.DropDownList.PopupOpened+=DropDownList_PopupOpened;

private void DropDownList_PopupOpened(object sender, EventArgs e)
{
    this.radDropDownList1.CloseDropDown();
}
Pending Review
Last Updated: 24 Jul 2024 16:51 by Panch Raj

I have created a RadForm in a sample winforms project and dropped a RadPageView control on the form. Then created three pages and dropped a user control on the page 1 and page 2. Now when I navigate to page 3 from page and page 2 then Visual Studio gets not responding and crashes later.

I am recently downloaded the trial version of Telerik Winforms(2024.2.514) and found this issue with User controls. Previous versions also have same issue.

Recording of the issue as well as sample project is attached.

Declined
Last Updated: 22 Jul 2024 13:40 by ADMIN
Created by: Henri
Comments: 1
Category: UI for WinForms
Type: Bug Report
1
I am running the latest version of Telerik for Winforms. Once we click in the launch demo it is crashing. Another problem, I am not able to find the tssp files for the latest Visual Studio 2022 light and dark. Where are the files located? How can I download them?
Under Review
Last Updated: 19 Jul 2024 11:58 by ADMIN

After more than 10 years this is STILL a Bug. 

https://feedback.telerik.com/winforms/1369181-fix-radgroupbox-with-collapsed-header-does-not-fill-the-entire-content-if-there-is-a-docked-child-control-inside-the-groupbox

The groupbox header does not collapse when I put a table layout panel inside of it.

 

Is this product (Telerik for winforms) still being supported? Or should I be looking elsewhere for a different controls toolkit solution for my company?

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 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.

Declined
Last Updated: 05 Jul 2024 12:59 by ADMIN

We are trying to display read only versions of documents. Some of these documents are of type .docm and have elements like dropdowns and text boxes. Most of the documents are being converted properly but all text within these .docm elements are missing. We have tried loading into the RadRichTextBox control and directly exporting to plain text with no luck. We do not need full support for these elements but in order to use Telerik's library for our document viewer we need to be able to at least extract text from these elements.

Is this currently unsupported or is there some other provider I should be using?

Declined
Last Updated: 05 Jul 2024 12:59 by ADMIN

Hi
I'm building a .net app with VB 2019.

With RadChartView, for some unknown reason, I can't change the Font on the Legend
Nor can I set the exact legend position when using following code

With myRadChartView

.ShowLegend = True
                    .ChartElement.LegendElement.Font = New Font("Arial", 12.0F, FontStyle.Regular)
                    .ChartElement.LegendPosition = LegendPosition.Float
                    .ChartElement.LegendOffset = New Point(1600, 300)

end with

NB: This was not working with previous release either.

Declined
Last Updated: 05 Jul 2024 12:57 by ADMIN

Erro encontrado no RadGridView, quando está com configurado como ("SelectionMode" : FullRowSelect) e ("ClipboardCopyMode" = "EnableWihoutHeaderText"), o mesmo está abrindo um menu de contexto/menu suspenso "Copy" e impede a abertura do menu de contexto customizado. E ao copiar o conteúdo de uma célula em específico, copia a linha toda.

Na imagem a baixo, mostrando que está impedindo o menu de contexto do sistema

Sobre o Clipboard, aparentemente não está enviando o conteúdo da célula corrente e sim mandando da linha toda

resolvi aqui usando o evento KeyDown do RadGridView
if (e.Control && e.KeyCode == Keys.C)
{
    Clipboard.SetText(myGrid.CurrentCell.Value.ToString());
}

Declined
Last Updated: 05 Jul 2024 12:57 by ADMIN
Created by: Scott
Comments: 4
Category: UI for WinForms
Type: Bug Report
0

Using a RadForm and rad controls like the RadTextbox and RadDropdown, I create this form. It looks like this:

I save and close the form. I reopen and it changes all the formatting. It now looks like this:

Notice, that the spacing has been increased and the dropdown lengths have been increased. I'm pretty sure there's other changes too.

What am I doing wrong?

 

Thanks,

Scott

 

 

Declined
Last Updated: 05 Jul 2024 12:54 by ADMIN

When using the new Office 2019 Light theme in the SyntaxEditor there are no scrollbars displayed in the CompletionList window. Also the list is not scrollable using the scrollwheel. Only when using the arrows on the keyboard.

When using the fluent theme it is working fine.

See attached screenshots.

1 2 3 4 5 6