Posted 30 Aug 2011 Link to this post
protected void rcbPerson_ItemsRequested(object sender, Telerik.Web.UI.RadComboBoxItemsRequestedEventArgs e)
{
RadComboBoxData d = PersonBO.GetPersons((RadComboBoxContext)e.Context);
rcbPerson.DataSource = d.Items.AsEnumerable();
rcbPerson.DataTextField = "Text";
rcbPerson.DataValueField = "Value";
rcbPerson.DataBind();
e.Message = d.Message;
}
Posted 03 Sep 2011 Link to this post
Thank you for being the most amazing .NET community! Your unfailing support is what helps us charge forward! We'd appreciate your vote for Telerik in this year's DevProConnections Awards. We are competing in mind-blowing 20 categories and every vote counts! VOTE for Telerik NOW >>
Posted 07 Sep 2011 Link to this post
Posted 13 Sep 2011 Link to this post