I have a problem with Internet Explorer 9 with Rad List Box's extending to the bottom of the page on first load. See attached image.
I have tested this with Firefox, Chrome and older versions of IE and IE 9 does this everytime on first load on any of my Rad List Box's. I have also removed any custome CSS sheets from the project with the same results.
Here is the code for the Rad List Box;
I have tested this with Firefox, Chrome and older versions of IE and IE 9 does this everytime on first load on any of my Rad List Box's. I have also removed any custome CSS sheets from the project with the same results.
Here is the code for the Rad List Box;
<table> <tr> <td> <telerik:RadListBox ID="countiesRLB" runat="server" DataKeyField="county_name" AllowTransfer="true" TransferToID="selectedcountiesRLB" AllowTransferOnDoubleClick="true" DataSortField="county_name" DataTextField="county_name" DataValueField="county_name" Height="200px" Width="175px" Visible="false" SelectionMode="Multiple" Sort="Ascending" ontransferred="countiesRLB_Transferred" AutoPostBackOnTransfer="true"> <HeaderTemplate> Counties</HeaderTemplate> </telerik:RadListBox> </td> <td> <telerik:RadListBox ID="selectedcountiesRLB" runat="server" Height="200px" Width="150px" Visible="false" SelectionMode="Multiple"> <HeaderTemplate> Selected Counties</HeaderTemplate> </telerik:RadListBox> </td> </tr></table>