﻿<?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 - Lounge - IE11 problems</title><link>http://www.intersoftsolutions.com/Community/Lounge/IE11-problems/</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 problems</title><link>http://www.intersoftsolutions.com/Community/Lounge/IE11-problems/</link><pubDate>Thu, 04 Jun 2015 03:22:15 GMT</pubDate><dc:creator>yudi</dc:creator><category>compatibility mode</category><category>ie11</category><description>&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Thank you for providing the hint to CreatingSimpleDialogBox.aspx in WebDesktop tutorial. I also get the same result when view the page in IE 11 browser.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;I made a minor modification to the tutorial page. The detail is as follow:&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Step 1 - Change doctype to html5 doctype.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Original:&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;&amp;lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" &amp;gt;
&amp;lt;html&amp;gt;&lt;/pre&gt;&lt;br&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Modified to:&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;&amp;lt;!DOCTYPE HTML&amp;gt;
&amp;lt;html&amp;gt;&lt;/pre&gt;&lt;br&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Step 2 - Set RenderingMode to HTML5.&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;&amp;lt;ISWebDesktop:WebDialogBox ID="WebDialogBox1" runat="server" DialogBoxImage="Information"
    Height="150px" Width="400px" RenderingMode="HTML5"&amp;gt;
    ...
&amp;lt;/ISWebDesktop:WebDialogBox&amp;gt;&lt;/pre&gt;&lt;br&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Step 3 - Enable ContentScrollable of WebDialogBox.&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;&amp;lt;ISWebDesktop:WebDialogBox ID="WebDialogBox1" runat="server" DialogBoxImage="Information"
    Height="150px" Width="400px" ContentScrollable="True" RenderingMode="HTML5"&amp;gt;
    ...
&amp;lt;/ISWebDesktop:WebDialogBox&amp;gt;&lt;/pre&gt;&lt;br&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Step 4 - Add css selector for html, body, and form element.&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;&amp;lt;style type="text/css"&amp;gt;
    html, body, form
    {
        height: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }
&amp;lt;/style&amp;gt;&lt;/pre&gt;&lt;br&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Save the changes and view the page in IE 11 browser. The result is as shown in the screenshot below.&lt;/span&gt;&lt;/p&gt;
&lt;img style="width: 409px; height: 249px;" src="http://www.intersoftpt.com/Community/Attachments/14461/WebDialogBox_in_IE11.png"&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;For your reference, I enclosed the modified version of CreatingSimpleDialogBox.aspx as attachment. Please have the page evaluated on your end and let me know whether this helps or not.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>IE11 problems</title><link>http://www.intersoftsolutions.com/Community/Lounge/IE11-problems/</link><pubDate>Wed, 03 Jun 2015 17:07:31 GMT</pubDate><dc:creator>tj@domesticsoft.com</dc:creator><category>compatibility mode</category><category>ie11</category><description>Hmm yes you are problably right. I have to compare the code in those samples to my code. It has probably something with style or font settinst to do. Not so easy to figure out.&lt;br&gt;&lt;br&gt;BUT! you can regenerate this problem if you run the solution C:\Program Files (x86)\Intersoft Solutions\Intersoft Premier Studio 2014 R2\Tutorials\cs\WebDesktopTutorials.sln&lt;br&gt;And if you try to view the file WebDialogBoxes\CreatingSimpleDialogBox.aspx&lt;br&gt;Find attached picture for both run in compatibility mode and none compatibility mode.&lt;br&gt;This just a simple example of a dialog box, but regnerates the same problem I have in my app. with WebDialogs....for example&lt;br&gt;&lt;br&gt;PS: To have the webDialog to show up, I had to add this code at the client side:&lt;br&gt;&lt;pre&gt;&amp;lt;head id="Head1" runat="server"&amp;gt;    &amp;lt;title&amp;gt;Simple Dialog box    &amp;lt;/title&amp;gt;
 &amp;lt;script language="javascript" type="text/javascript"&amp;gt;
     function window_onload() {
         document.body.style.overflow = "hidden";
         var dlgBox = ISGetObject("WebDialogBox1");
         dlgBox.ShowDialog();
     }

	&amp;lt;/script&amp;gt;
&amp;lt;/head&amp;gt;&lt;/pre&gt;&lt;p&gt;And then at the server side:&lt;br&gt;&lt;br&gt;&lt;/p&gt;&lt;pre&gt;    protected void Page_Load(object sender, EventArgs e)
    {
        body.Style.Add("overflow", "hidden");

        // Add java script onload="window_onload()"
        body.Attributes.Add("onload", "window_onload()");
    }
&lt;/pre&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;br&gt;</description></item><item><title>IE11 problems</title><link>http://www.intersoftsolutions.com/Community/Lounge/IE11-problems/</link><pubDate>Wed, 03 Jun 2015 01:42:27 GMT</pubDate><dc:creator>yudi</dc:creator><category>compatibility mode</category><category>ie11</category><description>&lt;p&gt;&lt;span style="color: #1f497d;"&gt;I tried to replicate the reported problem by viewing WebGrid sample (FirstExperience.aspx) in IE 11 browser. Everything worked smoothly and the page was rendered without any issues.&lt;/span&gt;&lt;/p&gt;&lt;img src="http://www.intersoftpt.com/Community/Attachments/14461/WebGrid_9_in_IE11.png" style="height: 249px; width: 409px;"&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Please feel free to let me know if you find anything that I might miss during my attempt to reproduce the problem.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>IE11 problems</title><link>http://www.intersoftsolutions.com/Community/Lounge/IE11-problems/</link><pubDate>Tue, 02 Jun 2015 18:07:39 GMT</pubDate><dc:creator>tj@domesticsoft.com</dc:creator><category>compatibility mode</category><category>ie11</category><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;I have just upgraded to WebUI Studio 2014R2 for our old ASP.Net based system. All works fine except that when running from Internet Explorer 11 (IE11) all Intersoft components are rendered badly, and do not work fully. However if I force IE11 to run in compatibility mode everything works fine.&lt;br&gt;Is this a known problem? Is there a solution?&lt;br&gt;PS: We had the same problem in WebUI Studio 2009 except there it was also having problem in compatibility mode.&lt;br&gt;&lt;/p&gt;</description></item></channel></rss>