﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebCombo - IE11: WebCombo DropDown position</title><link>http://www.intersoftsolutions.com/Community/WebCombo/IE11-WebCombo-DropDown-positioning/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>IE11: WebCombo DropDown position</title><link>http://www.intersoftsolutions.com/Community/WebCombo/IE11-WebCombo-DropDown-positioning/</link><pubDate>Thu, 17 Apr 2014 05:21:04 GMT</pubDate><dc:creator>cebinger@axongmbh.de</dc:creator><description>&lt;p&gt;Hello Bernard,&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;thank you very much. After I set it for each Combo it works fine. doctype and renderingmode were already set. Yippie :)&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;regards&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>IE11: WebCombo DropDown position</title><link>http://www.intersoftsolutions.com/Community/WebCombo/IE11-WebCombo-DropDown-positioning/</link><pubDate>Wed, 16 Apr 2014 02:41:47 GMT</pubDate><dc:creator>bernardx</dc:creator><description>&lt;p&gt;Hi Adelhard,&lt;/p&gt;&lt;p&gt;Have you put height for each element above WebCombo tag? WebCombo will preserve its Resultbox to appear below WebCombo if your page still have area below WebCombo (WebCombo doesn't appear on below of your page). You can download my sample &lt;a href="http://1drv.ms/1l6f3kO" target="_blank"&gt;here&lt;/a&gt;. In my sample I put this style so html, body and form tag have 100% height which is default behavior in IE9 and earlier. &lt;/p&gt;&lt;pre&gt;&amp;lt;style type="text/css"&amp;gt;
    html, body, form
    {
        height: 100%;
        margin: 0px;
        padding: 0px;
        width: 100%;    
    }
&amp;lt;/style&amp;gt;&lt;/pre&gt;
&lt;p&gt;Please also use RenderingMode HTML5 and doctype HTML5 when using WebCombo in IE11 and IE10. This is necessary because IE10 and IE11 used HTML5 doctype as standard doctype for its rendering. Hope this helps.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Bernard&lt;/p&gt;</description></item><item><title>IE11: WebCombo DropDown position</title><link>http://www.intersoftsolutions.com/Community/WebCombo/IE11-WebCombo-DropDown-positioning/</link><pubDate>Tue, 15 Apr 2014 04:30:16 GMT</pubDate><dc:creator>cebinger@axongmbh.de</dc:creator><description>&lt;p&gt;Hello Yudi, &lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;thanks for your support but that didn't work out well. The DropDown-Menu still show above the ComboBox. It's like your code snippet.&lt;/p&gt;
&lt;p&gt;The funny thing here is that I've another Combo where the DropDown works as expected. I've tested it with older Browser Versions of Internet Explorer (9, 10) and there aren't those problems.&lt;/p&gt;
&lt;p&gt;Is there anything else I could do here?&lt;/p&gt;
&lt;p&gt;regards&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>IE11: WebCombo DropDown position</title><link>http://www.intersoftsolutions.com/Community/WebCombo/IE11-WebCombo-DropDown-positioning/</link><pubDate>Sun, 13 Apr 2014 22:38:59 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;You can try to set the height on the container of the WebCombo such as shown in the following snippet code.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;%@ Page Language="C#" AutoEventWireup="true"    CodeFile="BindToAccessDataSource.aspx.cs"
    Inherits="yudi_BindToAccessDataSource" %&amp;gt;
&amp;lt;%@ Register Assembly="ISNet.WebUI.WebCombo"
    Namespace="ISNet.WebUI.WebCombo" TagPrefix="ISWebCombo" %&amp;gt;
&amp;lt;!doctype html&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;head runat="server"&amp;gt;
    &amp;lt;title&amp;gt;&amp;lt;/title&amp;gt;
    &amp;lt;style&amp;gt;
        html, body, form
        {
            height: 100%;
            width: 100%;
            margin: 0;
            padding: 0;
        }
    &amp;lt;/style&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
    &amp;lt;form id="form1" runat="server"&amp;gt;
        &amp;lt;div style="height: 100%;"&amp;gt;
            &amp;lt;ISWebCombo:WebCombo ID="WebCombo1" runat="server"
                DataSourceID="AccessDataSource1" UseDefaultStyle="True"
                DataTextField="ContactName" DataValueField="CustomerID"
                Height="20px" Width="200px" RenderingMode="HTML5"&amp;gt;
            &amp;lt;/ISWebCombo:WebCombo&amp;gt;
            &amp;lt;asp:AccessDataSource ID="AccessDataSource1" runat="server"
                DataFile="~/App_Data/Northwind.mdb"
                SelectCommand="SELECT * FROM [Customers]"&amp;gt;
            &amp;lt;/asp:AccessDataSource&amp;gt;
        &amp;lt;/div&amp;gt;
    &amp;lt;/form&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Hope this helps.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>IE11: WebCombo DropDown position</title><link>http://www.intersoftsolutions.com/Community/WebCombo/IE11-WebCombo-DropDown-positioning/</link><pubDate>Fri, 11 Apr 2014 04:08:44 GMT</pubDate><dc:creator>cebinger@axongmbh.de</dc:creator><description>&lt;p&gt;Hello there,&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;is there a way to display the dropdown menu from webcombo on the bottom of the control?&lt;/p&gt;
&lt;p&gt;In my case it is only displayed on top when I'm using IE 11 and it kinda sucks.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;regards&lt;/p&gt;</description></item></channel></rss>