The following listbox is NOT allowing multiple selection:
While the EXACT same code DOES allow multiple selections on a different page. This is inside a user control on a page that inherits a master page. What could possibly cause the "SelectionMode=Multiple" to be ignored?
Thanks!
<table align="center"> <tr> <td align="center"> <div style="text-align:left"> <telerik:RadListBox ID="RadListBoxDivisions" runat="server" DataSourceID="ObjectDataSourceDivisions" DataValueField="DIV_NUM" DataTextField="NUMBER_AND_NAME" Height="150px" SelectionMode="Multiple" Width="300px"> </telerik:RadListBox> </div> </td> </tr> </table>While the EXACT same code DOES allow multiple selections on a different page. This is inside a user control on a page that inherits a master page. What could possibly cause the "SelectionMode=Multiple" to be ignored?
Thanks!