I have a radlistbox and the items are being inserted programmatically, how do I expand the width of an item so multiple items won't show on a single line as they are showing as of now.
currently items are being inserted to listbox in c# like :
and the listbox is declared as:
currently items are being inserted to listbox in c# like :
rlbAssigned.Items.Add(
new
RadListBoxItem(rlbAvailable.Items[rlbAvailable.SelectedIndex].Text, rlbAvailable.Items[rlbAvailable.SelectedIndex].Value));
and the listbox is declared as:
<
telerik:RadListBox
ID
=
"rlbAvailable"
runat
=
"server"
Height
=
"320px"
Width
=
"200px"
> </
telerik:RadListBox
>