I'm using the basic features of the list box (Q2 2009) and the functionality seems to work fine. I am having an issue with how it handles page resizing and div scrolling.
1. when I resize the browser window (IE 7) - the list box does not move and it overlaps the div border, causing it to cover the footer content.
2. when I scroll the div - all other controls move up or down, but the list box stays put.
I have it sitting in a <div> that has overflow set to auto and it's height set dynamically. The same div contains several Labels.
The short and sweet version of the aspx...
1. when I resize the browser window (IE 7) - the list box does not move and it overlaps the div border, causing it to cover the footer content.
2. when I scroll the div - all other controls move up or down, but the list box stays put.
I have it sitting in a <div> that has overflow set to auto and it's height set dynamically. The same div contains several Labels.
The short and sweet version of the aspx...
| <div id="MainDiv"> |
| <telerik:RadAjaxPanel> |
| <div id="MultipageDiv"> -- this div is set to overflow:auto in a stylesheet; |
| <telerik:RadMultiPage> |
| <telerik:RadPageView ID="RadPageViewCustomers" runat="server"> |
| <div id="ViewPageDiv" > |
| <asp:Table ID="Table1" runat="server" Width="800px"> |
| <asp:TableRow> |
| <asp:TableCell> |
| <telerik:RadListBox> |
Any ideas?