This is a migrated thread and some comments may be shown as answers.

Docking RadCheckedDropDownList in TableLayoutPanel 2018.2.515.40

1 Answer 71 Views
CheckedDropDownList
This is a migrated thread and some comments may be shown as answers.
Mateusz
Top achievements
Rank 1
Mateusz asked on 22 May 2018, 12:08 PM

Hello,

 

If I try to add RadCheckedDropDownList and dock it in TableLayoutPanel in newest version of UI for WinControls it crashes with following error (see code below)

var form = new Form();
var table = new TableLayoutPanel();
var list = new RadCheckedDropDownList();
 
list.Dock = DockStyle.Fill;
// Set dock causes System.ArgumentOutOfRangeException: 'Value of '-2147483648' is not valid for 'LargeChange'. 'LargeChange' must be greater than or equal to 0.
 
table.Controls.Add(list, 1, 0);
form.Controls.Add(table);
form.ShowDialog();

 

The problem is, I have application which has like 40 RadCheckedDropDownList, so any help will be appreciated.

Regards,

Mateusz

 

 

 

1 Answer, 1 is accepted

Sort by
0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 24 May 2018, 08:27 AM
Hello, Mateusz,    

I have logged it in our feedback portal. You can track its progress, subscribe for status changes and add your comments on the following link - feedback item.

I have also updated your Telerik points.

Currently, the possible solution that I can suggest is to disable the auto size functionality of RadCheckedDropDownList.

I hope this information helps. If you have any additional questions, please let me know. 

Regards,
Dess
Progress Telerik
Try our brand new, jQuery-free Angular components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
Tags
CheckedDropDownList
Asked by
Mateusz
Top achievements
Rank 1
Answers by
Dess | Tech Support Engineer, Principal
Telerik team
Share this question
or