iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
Hi,
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.Is this a known problem? Is there a solution?PS: We had the same problem in WebUI Studio 2009 except there it was also having problem in compatibility mode.
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.
Please feel free to let me know if you find anything that I might miss during my attempt to reproduce the problem.
<head id="Head1" runat="server"> <title>Simple Dialog box </title> <script language="javascript" type="text/javascript"> function window_onload() { document.body.style.overflow = "hidden"; var dlgBox = ISGetObject("WebDialogBox1"); dlgBox.ShowDialog(); } </script> </head>
And then at the server side:
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()"); }
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.
I made a minor modification to the tutorial page. The detail is as follow:
Step 1 - Change doctype to html5 doctype.
Original:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > <html>
Modified to:
<!DOCTYPE HTML> <html>
Step 2 - Set RenderingMode to HTML5.
<ISWebDesktop:WebDialogBox ID="WebDialogBox1" runat="server" DialogBoxImage="Information" Height="150px" Width="400px" RenderingMode="HTML5"> ... </ISWebDesktop:WebDialogBox>
Step 3 - Enable ContentScrollable of WebDialogBox.
<ISWebDesktop:WebDialogBox ID="WebDialogBox1" runat="server" DialogBoxImage="Information" Height="150px" Width="400px" ContentScrollable="True" RenderingMode="HTML5"> ... </ISWebDesktop:WebDialogBox>
Step 4 - Add css selector for html, body, and form element.
<style type="text/css"> html, body, form { height: 100%; width: 100%; margin: 0; padding: 0; } </style>
Save the changes and view the page in IE 11 browser. The result is as shown in the screenshot below.
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.
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname