How can I adjust the width of items in my RadListBox that are being inserted programmatically to prevent multiple items from displaying on a single line?
Currently, the items are added to the listbox in C# code like this:
rlbAssigned.Items.Add(new RadListBoxItem(rlbAvailable.Items[rlbAvailable.SelectedIndex].Text, rlbAvailable.Items[rlbAvailable.SelectedIndex].Value));
The RadListBox is declared as follows:
<telerik:RadListBox ID="rlbAvailable" runat="server" Height="320px" Width="200px"> </telerik:RadListBox>