I have not been able to get the right search to answer this question. Quite simply I want the imageurl to display on the right not the left. The formatting looks messy because the image url comes and goes misaligning the text.
I have tried to implement the ItemTemplate but cannot get a sample that binds to RadCombo which is loaded dynamically creating combo items on the fly with search criteria.
protected void ddl_ItemsLoad(object sender, RadComboBoxItemsRequestedEventArgs e)
{
const int ItemsPerRequest = 40;...
I load up the items like this... I also apply a search criteria on result to subset my response back.
RadComboBoxItem item = new RadComboBoxItem(name, row["ID"].ToString());
if (Manufacturer)
item.ImageUrl = "~/images/Manufacturer.png";
result.Add(item);
I just cannot get the right magic to show the layout the way I want. It works perfectly showing the image on the left, not where I want it.
I have tried to implement the ItemTemplate but cannot get a sample that binds to RadCombo which is loaded dynamically creating combo items on the fly with search criteria.
protected void ddl_ItemsLoad(object sender, RadComboBoxItemsRequestedEventArgs e)
{
const int ItemsPerRequest = 40;...
I load up the items like this... I also apply a search criteria on result to subset my response back.
RadComboBoxItem item = new RadComboBoxItem(name, row["ID"].ToString());
if (Manufacturer)
item.ImageUrl = "~/images/Manufacturer.png";
result.Add(item);
I just cannot get the right magic to show the layout the way I want. It works perfectly showing the image on the left, not where I want it.