Hi,
I'm a RadComboBox with Image and Text.
For popolate the combo I use this method.
| foreach (DataRow dr in dt.Rows) |
| { |
| RadComboBoxItem item = new RadComboBoxItem(dr[descriptionColumn].ToString(), dr[codeColumn].ToString()); |
| item.ImageUrl = string.Format("{0}/{1}.png", pathFolder, dr[imageColumn].ToString()); |
| combo.Items.Add(item); |
| } |
It's all right, I see the image.
When I insert my combo in an UpdatePanel or RadAjaxPanel I don't view the image but an only red cross.
I suppose that Ajax doesn't succeed to open a phisical file.
Is it right? Is not possibile use ComboBox with image in an Ajax scenario ?
Thanks,
Marco