I'm writing a custom field for Sitecore and I want a list box. Interestingly, when I create a Lisbox() and add it to the screen, what actually appears is a combo box. Any idea if Sitecore actually provides a Listbox? And, if so, how I would set multi/single select on it (although that may become obvious to me after I get the correct control to show up)?
I am creating it like this:
Listbox lstResults = new Listbox
{
ID = GetID("lstResults"),
Multiple = false,
Width = Unit.Pixel(300),
Click = "OnSelectionChanged"
};
Listboxclass you mention? - Mark Ursino