Hi, I am very new to telerik so please take it easy on me if you feel the answers to my questions are obvious.
I'm using a ComboBox and when I select an item from the list of items the text is displayed but not the symbol
any help would be greatly appreciated
Dan
I'm using a ComboBox and when I select an item from the list of items the text is displayed but not the symbol
any help would be greatly appreciated
Dan
<telerik:RadComboBox ID="RadComboBoxSymbols" runat="server" AutoPostBack="true" OnClientSelectedIndexChanged="OnSymbolChange" OnSelectedIndexChanged="RadComboBoxSymbols_SelectedIndexChanged" Width="100"> </telerik:RadComboBox>private void BindToSymbolsList(Values.pointReg.PointRegistration pointRegistration) { RadComboBoxSymbols.Items.Clear(); foreach (Symbol symbol in pointRegistration.Getallsymbols()) { RadComboBoxItem item = new RadComboBoxItem(symbol.Name,symbol.Id); item.ImageUrl = symbol.Path; RadComboBoxSymbols.Items.Add(item); } RadComboBoxSymbols.SelectedIndex = 0; }