Requirements
RadControls version 2012.2.912.40.NET version 4.0
Visual Studio version 2010
programming language VB.Net
I tried to reproduce the demo sample that generates the Check-box in the drop-down list. In the Demo applications it is called
Dropdown & List/Creating New Items
The VB.Net code seems to be a missing event details as there are no handles int he code to copy for the events below
Private
Sub
ItemDataBound(
ByVal
sender
As
Object
,
ByVal
args
As
ListItemDataBoundEventArgs)
Private
Sub
ItemDataBinding(
ByVal
sender
As
Object
,
ByVal
args
As
ListItemDataBindingEventArgs)
Private
Sub
CreatingVisualListItem(
ByVal
sender
As
Object
,
ByVal
args
As
CreatingVisualListItemEventArgs)
Private
Sub
ItemDataBound(
ByVal
sender
As
Object
,
ByVal
args
As
ListItemDataBoundEventArgs)
Handles
RadDropDownList1.ItemDataBound, RadListControl1.ItemDataBound
Private
Sub
ItemDataBinding(
ByVal
sender
As
Object
,
ByVal
args
As
ListItemDataBindingEventArgs)
Handles
RadDropDownList1.ItemDataBinding
Private
Sub
CreatingVisualListItem(
ByVal
sender
As
Object
,
ByVal
args
As
CreatingVisualListItemEventArgs)
Handles
RadListControl1.CreatingVisualListItem
I tried to modify the code but could not get the the check-box in the drop-down item ,while it does in the List-box
There seems to be a missing event, and in the demo code?
Thanks
Denis