Hi There,
I am using Rad Ribbon bar and have a dropdownbutton that I am dynamically creating the items for from a dataset. My problem is I can not seem to create an event handler for the selection as it appears that item.click does not seem to exist. here is my code:
can some one point me to what event i should see in order to create the handler for this?
many thanks!
Jonathan
I am using Rad Ribbon bar and have a dropdownbutton that I am dynamically creating the items for from a dataset. My problem is I can not seem to create an event handler for the selection as it appears that item.click does not seem to exist. here is my code:
For
Each
row
As
DataRow
In
ds_sn.Tables(
"sn_tbl_groups"
).Rows
Dim
tag
As
New
radmenuitem(row(1).ToString)
tag.CheckOnClick =
New
EventHandler(
AddressOf
GroupMenuclick)
Me
.btn_SpecificGroup.Items.Add(tag)
Next
can some one point me to what event i should see in order to create the handler for this?
many thanks!
Jonathan