Hello Eric,
Thank you for writing back.
The provided detailed information is greatly appreciated. I have logged it in our feedback portal. You can track its progress, subscribe for status changes and add your vote/comment to it on the following link - feedback item.
I have also updated your Telerik points.
The possible solution that I can suggest is to use a RadHostItem and use RadDropDownList:
I hope this information helps. If you have any additional questions, please let me know.
Regards,
Dess
Telerik
Thank you for writing back.
The provided detailed information is greatly appreciated. I have logged it in our feedback portal. You can track its progress, subscribe for status changes and add your vote/comment to it on the following link - feedback item.
I have also updated your Telerik points.
The possible solution that I can suggest is to use a RadHostItem and use RadDropDownList:
RadDropDownList ddl =
new
RadDropDownList();
ddl.MinimumSize =
new
System.Drawing.Size(100, 20);
RadHostItem host =
new
RadHostItem(ddl);
host.MinSize =
new
Size(100, 20);
this
.radRibbonBarButtonGroup2.Items.Add(host);
ddl.DataSource = dt;
ddl.DisplayMember =
"Name"
;
ddl.ValueMember =
"Id"
;
ddl.DataBindings.Add(
"SelectedValue"
, student,
"Id"
,
true
, DataSourceUpdateMode.OnPropertyChanged);
I hope this information helps. If you have any additional questions, please let me know.
Dess
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items