Select a few songs, and then hover over the list (Note: these selections do not necessarily indicate the musical
preferences of EasyListBox.com).
In multi-select listbox mode, users won't have to hold the CTRL key to add to the current selection.
Beyond that, a simple hover action shows which items are currently selected.
<ELB:EasyListBox id="multiSelect" Height="120px"
Width="400px" SelectionMode="multiple"
ButtonColor="#e0d0a0" ArrowColor="teal"
SelectionMode="multiple" DisplayMode="Listbox"
Background="wheat" RollBGColor="teal"
TextColor="#555555" RollTextColor="#ffffff" CssClass="justBold"
runat="server" />
Getting or setting values for this list is a snap, too. EasyListBox gives up a comma-delimited list of selections in multiple mode,
and you can specify selections that way, too. For example:
If Not Page.IsPostBack Then
multiSelect.SelectedValue = "where,livin,might"
End If
Note that the values you specify do not have to be in the same order as the items in the list
|