How does the CheckedDropDownList control use DescriptionTextListDataItems?

1 Answer 6 Views
CheckedDropDownList
yw
Top achievements
Rank 2
yw asked on 05 Aug 2025, 02:54 PM
I introduced the function that the CheckedDropDownList control can use DescriptionTextListDataItems on https://www.telerik.com/products/winforms/checkeddropdownlist.aspx, but I didn't find any sample code. Only the DropDownList uses DescriptionTextListDataItems. How should the CheckedDropDownList control use DescriptionTextListDataItems?

1 Answer, 1 is accepted

Sort by
0
Accepted
Nadya | Tech Support Engineer
Telerik team
answered on 06 Aug 2025, 06:15 AM

Hello,

Yes, RadCheckedDropDownList features DescriptionTextListDataItems, which provide an additional element to hold description text. DescriptionTextCheckedListDataItem is similar to the RadCheckedListDataItem and should be added to the Items collection. You need to create an instance of DescriptionTextCheckedListDataItem, set its DescriptionText, and add it to the collection of items. For example:

DescriptionTextCheckedListDataItem descriptionItem = new DescriptionTextCheckedListDataItem();
descriptionItem.Text = "Chicken wings";
descriptionItem.DescriptionText = "description here";
radCheckedDropDownList1.Items.Add(descriptionItem);

More information about how to add items in RadCheckedDropDownList is available in our online documentation here: Adding Items Programmatically - RadCheckedDropDownList - Telerik UI for WinForms

Regards,
Nadya | Tech Support Engineer
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Tags
CheckedDropDownList
Asked by
yw
Top achievements
Rank 2
Answers by
Nadya | Tech Support Engineer
Telerik team
Share this question
or