I am trying to make a multi colum combo box
But when trying to read value of radComboBoxSelection.SelectedItem.Attributes I am getting error what are other way to read value of
DrawnNumber
Thanks,
RadComboBoxItem item =
new
RadComboBoxItem();
item.Text = selectionItem.ShortName.ToString();
item.Value = selectionItem.SelectionId.ToString();
item.Attributes.Add(
"SelectionNumber"
, selectionItem.SelectionNumber.ToString());
item.Attributes.Add(
"DrawnNumber"
, selectionItem.DrawnNumber.ToString());
radComboBoxSelection.Items.Add(item);
item.DataBind();
But when trying to read value of radComboBoxSelection.SelectedItem.Attributes I am getting error what are other way to read value of
DrawnNumber
Thanks,