Hello,
I need to add programmatically Custom Attributes in RadComboBox
i get an error on click button to get a value for custom Attributes
this.LBL_MOVIE.Text = this.PCB_MOVIE.SelectedItem.Attributes["movie_p"];
Cause this.PCB_MOVIE.SelectedIndex is equals to -1
protected void PCB_MOVIE_ItemDataBound(object sender, RadComboBoxItemEventArgs e)
{
e.Item.Attributes.Add("movie_p","rocky");
}