WebCombo ignores Colspan on IE 10 but working fine on IE11

4 replies. Last post: February 7, 2014 3:53 AM by Hans Kristian
Tags :
  • (None)
  • New Discussion
  • New Question
  • New Product Feedback

Hello there,

I've got a huge problem with WebCombo styles in ie 10. I got a table within a WebTabItem and when I use a colspan then the Webcombo is ignoring this. Its working wonderful under ie 11. Below you got my Code-Snippet. When I use the RenderingMode="HTML5" functionality its not working too.

Can you help me out here?


regards

<!DOCTYPE html>
<html>
<head id="Head1" runat="server">
    <title>Projektmaske</title>
    <link href="~/Styles/MaskenNeu.css" rel="stylesheet" type="text/css" />
</head>
<body>
    <form id="form1" runat="server">
    <ISWebDesktop:WebTab ID="WebTab1" runat="server" Height="680px" Width="100%" DefaultTabItemHeight="20px"
        DefaultTabItemWidth="150px" NormalTabOffset="2">
        <TabPages>
            <ISWebDesktop:WebTabItem Text="Test">
                <PageTemplate>
                    <table>
                        <tr>
                            <td>
                                Projektangaben
                            </td>
                            <table style="width: 600px">
                                <colgroup>
                                    <col width="120" />
                                    <col width="230" />
                                    <col width="160" />
                                    <col width="90" />
                                </colgroup>
                                <tr>
                                    <td>
                                        Test
                                    </td>
                                    <td colspan="3">
                                        <ISWebCombo:WebCombo ID="Combo_Kunde" runat="server" UseDefaultStyle="true" Width="100%"></ISWebCombo:WebCombo>
                                        <%--<asp:TextBox runat="server" Width="100%" Text="Colspan working!!! :-D"></asp:TextBox>--%>
                                    </td>
                                </tr>
                            </table>
                        </tr>
                    </table>
                </PageTemplate>
        </TabPages>
</ISWebDesktop:WebTabItem>
    </ISWebDesktop:WebTab>
    </form>
</body>
</html>




All times are GMT -5. The time now is 5:51 PM.
Previous Next