I am using igmisc WebPanel (version 10.3.20103.2134) in our web application. The WebPanel contains table and the table contains some controls for example TextBox, DropDownList. I set width=”100%” for both WebPanel and table. Then I found the scrollbar was not shown in IE6 and IE7 when the controls were out of view. (IE8 and IE9 were working fine).
Any help will be very much appreciated.
Hi dmcmichael,
I have tested this and it looks normal.
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %><%@ Register Assembly="Infragistics35.WebUI.Misc.v10.3, Version=10.3.20103.2134, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" Namespace="Infragistics.WebUI.Misc" TagPrefix="igmisc" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title></head><body> <form id="form1" runat="server"> <div style="width:50px"> <igmisc:WebPanel ID="WebPanel1" runat="server" Width="100%" > <Template> <table width="100%"> <tr> <td> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> <asp:DropDownList ID="DropDownList1" runat="server"> <asp:ListItem Value="Item1"></asp:ListItem> </asp:DropDownList> </td> <td> </td> </tr> </table> </Template> </igmisc:WebPanel> </div> </form></body></html>
Please let me me know if I have missed something
Thank you