﻿<?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 - WebDesktop - Upgrading to Intersoft 2013 issues</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/Upgrading-to-Intersoft-2013-issues/</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>Upgrading to Intersoft 2013 issues</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/Upgrading-to-Intersoft-2013-issues/</link><pubDate>Thu, 20 Mar 2014 22:21:31 GMT</pubDate><dc:creator>bernardx</dc:creator><description>&lt;p&gt;Hi Roi,&lt;/p&gt;&lt;p&gt;Sorry for my late responses. I can replicate your issue here. This issue might be happen because in IE browser form tag in your code doesn't have any height. You could add:&lt;/p&gt;&lt;pre&gt;style="height: 100%; display: block;"&lt;/pre&gt;
&lt;p&gt;to your form tag. This will solve the issue.&lt;/p&gt;
&lt;p&gt;This issue happen because HTML4 doctype has different rendering method for each browser. That's why I suggest you to use HTML5 doctype. Each browser which have HTML5 support implement same rendering method so it would have the same structure and view in those browser. Although, if you want to support IE8 browser, I think you could use XHTML doctype instead of HTML4 doctype. XHTML doctype almost have the same rendering structure for each browser. Please also consider that IE10 and above only support HTML5 doctype as its standard doctype. Hope this helps.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Bernard&lt;/p&gt;</description></item><item><title>Upgrading to Intersoft 2013 issues</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/Upgrading-to-Intersoft-2013-issues/</link><pubDate>Wed, 19 Mar 2014 04:41:44 GMT</pubDate><dc:creator>roiu@a-g-r-e.com</dc:creator><description>&lt;p&gt;Bernard Hi, &lt;/p&gt;&lt;p&gt;Please inform me why there are rendering differences between IE, chrome and FF.&lt;/p&gt;
&lt;p&gt;The WebPaneManager is not fully streched to 100%  on IE&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;%@ Register Assembly="ISNet.WebUI.WebInput" Namespace="ISNet.WebUI.WebControls" TagPrefix="ISWebInput" %&amp;gt;
&amp;lt;%@ Register Assembly="ISNet.WebUI.WebDesktop" Namespace="ISNet.WebUI.WebDesktop" TagPrefix="ISWebDesktop" %&amp;gt;
&amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&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;script type="text/javascript"&amp;gt;
       
        function WebPaneManager1_OnInitialize(controlId) {
            var navPane = ISGetObject("WebNavPane1");
           
            return true;
        }
        function OnBarClick(Id, BarItem) {
           
        }
        function Redirect(page) {
            
        }
        
    &amp;lt;/script&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%; width: 100%;"&amp;gt;
        &amp;lt;ISWebDesktop:WebPaneManager ID="WebPaneManager1" runat="server" Height="100%" Width="100%" RenderingMode="Quirks"
                                     ImagesDirectory="~/Images/" &amp;gt;
            &amp;lt;RootGroupPane Name="RootGroupPane" Text="Root GroupPane" GroupPaneHeaderVisible="No"&amp;gt;
                &amp;lt;Panes&amp;gt;
                    &amp;lt;ISWebDesktop:WebPane Height="Custom" HeightValue="45px" Name="Header" Text="Header" 
                        ContentScrollable="false" AllowCollapse="No" AllowResize="No" DiscardContainerStyle="false"
                        HeaderVisible="No" ContentMode="UseInlineContent"&amp;gt;
                       &amp;lt;ContentTemplate&amp;gt;
                            &amp;lt;div&amp;gt;
                               
                            &amp;lt;/div&amp;gt;
                        &amp;lt;/ContentTemplate&amp;gt;                       
                    &amp;lt;/ISWebDesktop:WebPane&amp;gt;
                    &amp;lt;ISWebDesktop:WebGroupPane GroupType="VerticalTile" Name="GroupContent" Text="Group Content"&amp;gt;
                        &amp;lt;Panes&amp;gt;
                            &amp;lt;ISWebDesktop:WebPane AllowCollapse="No" AllowResize="No" Name="Content" Text="Content"
                                                 ContentMode="UseIFrame" HeaderAppearance="UseSubStyle" HeaderVisible="No" Height="Custom" HeightValue="100%" &amp;gt;
                                    &amp;lt;ContentTemplate&amp;gt;
                                    &amp;lt;/ContentTemplate&amp;gt;                                    
                                &amp;lt;/ISWebDesktop:WebPane&amp;gt;
                            &amp;lt;ISWebDesktop:WebPane Name="Side" Text="Side" Width="Custom" WidthValue="250px" AllowCollapse="Yes" HeightValue="100%"
                                                  AllowResize="Yes" HeaderAppearance="UseSubStyle" HeaderVisible="No"&amp;gt;
                                &amp;lt;ContentTemplate&amp;gt;
                                    &amp;lt;div style="display: none;"&amp;gt;
                                        &amp;lt;ISWebInput:WebInput ID="hdn_SelectedBarItem" runat="server" Text="" /&amp;gt;
                                    &amp;lt;/div&amp;gt;
                                    &amp;lt;ISWebDesktop:WebNavPane ID="WebNavPane1" runat="server" Height="100%" Width="100%"
                                                              GripImage="" OnBarClick="OnBarClick"&amp;gt;
                                        
                                        &amp;lt;Bars&amp;gt;       
                                                                                                                                                                                  
                                            &amp;lt;ISWebDesktop:WebNavBar ContentMode="UseInlineContent" CaptionDisplayMode="TextAndImage" 
                                                                    Image="~/Images/Bank_Big.gif" Name="ManageBankPages" 
                                                                    Text="xxxx"&amp;gt;
                                                    &amp;lt;ContentTemplate&amp;gt;
                                                      ????
                                                &amp;lt;/ContentTemplate&amp;gt;                                                   
                                            &amp;lt;/ISWebDesktop:WebNavBar&amp;gt;  
                                                                                                                                                                                                                                                                         
                                        &amp;lt;/Bars&amp;gt;
                                                                           
                                    &amp;lt;/ISWebDesktop:WebNavPane&amp;gt;
                                &amp;lt;/ContentTemplate&amp;gt;
                            &amp;lt;/ISWebDesktop:WebPane&amp;gt;
                        &amp;lt;/Panes&amp;gt;
                    &amp;lt;/ISWebDesktop:WebGroupPane&amp;gt;
                &amp;lt;/Panes&amp;gt;
            &amp;lt;/RootGroupPane&amp;gt;
            &amp;lt;FrameStyle BackColor="#E0E0E0" BorderColor="#404040" BorderStyle="None" BorderWidth="0px"
                ForeColor="White"&amp;gt;                
                &amp;lt;BorderSettings&amp;gt;                    
                    &amp;lt;Top Width="0px" /&amp;gt;
                &amp;lt;/BorderSettings&amp;gt;
                &amp;lt;Padding Bottom="0px" Left="0px" Right="0px" Top="0px" /&amp;gt;
            &amp;lt;/FrameStyle&amp;gt;
            &amp;lt;PaneSettings&amp;gt;
                &amp;lt;HeaderSubStyle BackColor="#E0E0E0" BackColor2="White" BorderColor="Gray" BorderStyle="Solid"
                    BorderWidth="1px" Font-Names="Tahoma" Font-Size="8pt" GradientType="Vertical"&amp;gt;
                    &amp;lt;Padding Bottom="0px" Left="0px" Right="0px" Top="0px" /&amp;gt;
                &amp;lt;/HeaderSubStyle&amp;gt;
                &amp;lt;InfoTextStyle Font-Names="Tahoma" Font-Size="8pt" ForeColor="White"&amp;gt;
                &amp;lt;/InfoTextStyle&amp;gt;
                &amp;lt;ContainerStyle BackColor="White" BorderColor="Gray" BorderStyle="Solid" BorderWidth="1px"
                    Font-Names="Tahoma" Font-Size="8pt" ForeColor="Black"&amp;gt;
                    &amp;lt;Padding Bottom="0px" Left="0px" Right="0px" Top="0px" /&amp;gt;
                &amp;lt;/ContainerStyle&amp;gt;
                &amp;lt;HeaderMainStyle BackColor="DimGray" BackColor2="LightGray" BorderColor="Gray" BorderStyle="Solid"
                    BorderWidth="1px" Font-Bold="True" Font-Names="Arial" Font-Size="12pt" ForeColor="White"
                    GradientType="Vertical"&amp;gt;
                    &amp;lt;BorderSettings&amp;gt;
                        &amp;lt;Top Width="0" /&amp;gt;
                    &amp;lt;/BorderSettings&amp;gt;
                    &amp;lt;Margin Bottom="0px" Left="0px" Right="0px" Top="0px" /&amp;gt;
                    &amp;lt;Padding Bottom="0px" Left="0px" Right="0px" Top="0px" /&amp;gt;
                &amp;lt;/HeaderMainStyle&amp;gt;
            &amp;lt;/PaneSettings&amp;gt;
            &amp;lt;SplitterStyle&amp;gt;
                &amp;lt;Active BackColor="Black" BaseStyle="Normal"&amp;gt;
                &amp;lt;/Active&amp;gt;
                &amp;lt;Over BaseStyle="Normal"&amp;gt;
                &amp;lt;/Over&amp;gt;
                &amp;lt;Normal BackColor="#E0E0E0"&amp;gt;
                &amp;lt;/Normal&amp;gt;
            &amp;lt;/SplitterStyle&amp;gt;
            &amp;lt;TextSettings InProgressText="" /&amp;gt;
            &amp;lt;ImagesSettings SplitterGripBottom="SplitterDown.gif" SplitterGripLeft="SplitterLeft.gif"
                SplitterGripRight="SplitterRight.gif" SplitterGripTop="SplitterUp.gif" InProgress="Loading/loading43.gif" /&amp;gt;
            &amp;lt;ClientSideEvents OnInitialize="WebPaneManager1_OnInitialize" /&amp;gt;
        &amp;lt;/ISWebDesktop:WebPaneManager&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;/p&gt;
&lt;p&gt;This also does not render the same (pane is not fully streched):&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;%@ Register Assembly="ISNet.WebUI.WebInput" Namespace="ISNet.WebUI.WebControls" TagPrefix="ISWebInput" %&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;%@ Register Assembly="ISNet.WebUI.WebDesktop" Namespace="ISNet.WebUI.WebDesktop" TagPrefix="ISWebDesktop" %&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;html&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;head id="Head1" runat="server"&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;title&amp;gt;&amp;lt;/title&amp;gt;      &lt;/p&gt;
&lt;p&gt;&amp;lt;/head&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;body&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;form id="form1" runat="server"&amp;gt;&lt;/p&gt;
&lt;p&gt;    &lt;/p&gt;
&lt;p&gt;    &lt;/p&gt;
&lt;p&gt;    &amp;lt;div style="height: 100%; width: 100%;"&amp;gt;&lt;/p&gt;
&lt;p&gt;        &amp;lt;ISWebDesktop:WebPaneManager ID="WebPaneManager1" runat="server" Height="100%" Width="100%"&amp;gt;&lt;/p&gt;
&lt;p&gt;            &amp;lt;RootGroupPane GroupType="VerticalTile" Name="RootGroup"&amp;gt;&lt;/p&gt;
&lt;p&gt;                &amp;lt;Panes&amp;gt;&lt;/p&gt;
&lt;p&gt;                    &amp;lt;ISWebDesktop:WebPane Name="Pane0" Text="Pane 0" Height="Fill" HeightValue="100%"&amp;gt;&lt;/p&gt;
&lt;p&gt;                    &amp;lt;/ISWebDesktop:WebPane&amp;gt;&lt;/p&gt;
&lt;p&gt;                &amp;lt;/Panes&amp;gt;&lt;/p&gt;
&lt;p&gt;            &amp;lt;/RootGroupPane&amp;gt;&lt;/p&gt;
&lt;p&gt;        &amp;lt;/ISWebDesktop:WebPaneManager&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;/div&amp;gt;        &lt;/p&gt;
&lt;p&gt;    &lt;/p&gt;
&lt;p&gt;    &amp;lt;/form&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/body&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/html&amp;gt;&lt;/p&gt;</description></item><item><title>Upgrading to Intersoft 2013 issues</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/Upgrading-to-Intersoft-2013-issues/</link><pubDate>Thu, 13 Mar 2014 22:42:55 GMT</pubDate><dc:creator>bernard</dc:creator><description>Hi Roi,&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;When using our control in IE8, you could use RenderingMode Quirks for HTML4 doctype or XHTML for XHTML doctype. You should also input your the correct doctype before html opening tag. It should be:&lt;/div&gt;
&lt;div&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;p&gt;or&lt;/p&gt;&lt;pre&gt;&amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&amp;gt;
&amp;lt;html xmlns="http://www.w3.org/1999/xhtml"&amp;gt;&lt;/pre&gt;&lt;p&gt;With those doctype and RenderingMode property, our control will render properly in IE8. Hope this helps.&lt;/p&gt;&lt;p&gt;Regards,&lt;br /&gt;Bernard&lt;/p&gt;&lt;/div&gt;</description></item><item><title>Upgrading to Intersoft 2013 issues</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/Upgrading-to-Intersoft-2013-issues/</link><pubDate>Thu, 13 Mar 2014 10:59:52 GMT</pubDate><dc:creator>roiu@a-g-r-e.com</dc:creator><description>&lt;p&gt;Bernard Hi, &lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;Thank you.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;What would be the best practice to use latest controls with IE 8?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;When using IE &amp;gt; 9\chrome\firefox I use HTML5 doctype &amp;#43; RenderingMode=HTML5 for all controls&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;For IE = 8 I don't use any doctype, and RenderingMode=Quirks (not loading webgrids, and I get many JS errors)&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>Upgrading to Intersoft 2013 issues</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/Upgrading-to-Intersoft-2013-issues/</link><pubDate>Wed, 12 Mar 2014 00:10:21 GMT</pubDate><dc:creator>bernard</dc:creator><description>&lt;p&gt;Hi Roi,&lt;/p&gt;&lt;p&gt;I tried to replicate you issue here. It seems your sample working properly in our local end. I have modified some style in your sample so WebPaneManager and WebNavBar can adapt with HTML5 doctype. You can download your modified sample &lt;a href="http://1drv.ms/NZfxP1" target="_blank" style="font-size: 10pt;"&gt;here&lt;/a&gt;. Please let me know if the issue still persist in your local end. Hope this helps.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Bernard&lt;/p&gt;</description></item><item><title>Upgrading to Intersoft 2013 issues</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/Upgrading-to-Intersoft-2013-issues/</link><pubDate>Tue, 11 Mar 2014 06:20:55 GMT</pubDate><dc:creator>roiu@a-g-r-e.com</dc:creator><description>&lt;p&gt;Hi, this is quite &lt;b&gt;urgent&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;I have encountered problems with &lt;b style="text-decoration: underline;"&gt;latest&lt;/b&gt; versions of ISNet on IE (tested on IE 11).&lt;/p&gt;
&lt;p&gt;(I would also wish to add that working with HTML5 doctypes and rendering mode&lt;/p&gt;
&lt;p&gt;works well on both chrome and firefox. &lt;/p&gt;
&lt;p&gt;IE, on the other hand, seems to be a c&lt;span style="font-size: 10pt;"&gt;atastrophy.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;Please inform me what is the BEST practice when using HTML5.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;)&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" dir="RTL"&gt;&lt;span dir="LTR"&gt;&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;When clicking on either bar item, i get the following error:&lt;/p&gt;
&lt;p&gt;GetPaneIFrameElement [Line: 7, Col: 14977], ISRes.axd&lt;/p&gt;
&lt;p&gt;this.GetPaneIFrameElement(); }; this.GetPaneIFrameElement =function () { var v5d389 =this.GetContentDivElement(); if (IS.moz ||IS.safari) { if (IS.IsHTML5DocType()) { while (v5d389.children[0].tagName !="IFRAME") v5d389 =v5d389.children[0]; } } else { while (v5d389.children.length !=2) v5d389 =v5d389.children[0]; } if (v5d389.children&lt;/p&gt;
&lt;p&gt;....&lt;/p&gt;
&lt;p&gt;{exception}&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;	&lt;/span&gt;Unable to get property 'children' of undefined or null reference&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;Attached a web page:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;%@ Register Assembly="ISNet.WebUI.WebInput" Namespace="ISNet.WebUI.WebControls" TagPrefix="ISWebInput" %&amp;gt;
&amp;lt;%@ Register Assembly="ISNet.WebUI.WebDesktop" Namespace="ISNet.WebUI.WebDesktop" TagPrefix="ISWebDesktop" %&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;link href="~/App_Themes/C4E/V4Style.css" rel="stylesheet" type="text/css" /&amp;gt;  
    
    &amp;lt;script type="text/javascript"&amp;gt;
         
        function WebPaneManager1_OnInitialize(controlId) {        
            return true;
        }
        function OnBarClick(Id, BarItem) {
            var Nindex = BarItem.Index;
            var navPane = ISGetObject("WebNavPane1");
            var paneManager = ISGetObject("WebPaneManager1");
            var pane = paneManager.GetPaneByName("Content");
            pane.SetContentURL("test.htm");
        }
    &amp;lt;/script&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
    &amp;lt;form id="form1" runat="server"&amp;gt;
    &amp;lt;div&amp;gt;
    &amp;lt;ISWebDesktop:WebPaneManager ID="WebPaneManager1" runat="server" Height="100%" Width="100%"
                                     ImagesDirectory="~/Images/" RenderingMode="HTML5"&amp;gt;
            &amp;lt;RootGroupPane Name="RootGroupPane" Text="Root GroupPane" GroupPaneHeaderVisible="No"&amp;gt;
                &amp;lt;Panes&amp;gt;
                    &amp;lt;ISWebDesktop:WebPane Height="Custom" HeightValue="45px" Name="Header" Text="Header"
                        ContentScrollable="false" AllowCollapse="No" AllowResize="No" DiscardContainerStyle="false"
                        HeaderVisible="No" ContentMode="UseInlineContent"&amp;gt;
                       &amp;lt;ContentTemplate&amp;gt;
                            
                        &amp;lt;/ContentTemplate&amp;gt;                       
                    &amp;lt;/ISWebDesktop:WebPane&amp;gt;
                    &amp;lt;ISWebDesktop:WebGroupPane GroupType="VerticalTile" Name="GroupContent" Text="Group Content"&amp;gt;
                        &amp;lt;Panes&amp;gt;
                            &amp;lt;ISWebDesktop:WebPane AllowCollapse="No" AllowResize="No" Name="Content" Text="Content"
                                                 ContentMode="UseIFrame" HeaderAppearance="UseSubStyle" HeaderVisible="No" Height="Custom" HeightValue="100%"&amp;gt;
                                    &amp;lt;ContentTemplate&amp;gt;
                                    &amp;lt;/ContentTemplate&amp;gt;                                    
                                &amp;lt;/ISWebDesktop:WebPane&amp;gt;
                            &amp;lt;ISWebDesktop:WebPane Name="Side" Text="Side" Width="Custom" WidthValue="250px" AllowCollapse="Yes"
                                                  AllowResize="Yes" HeaderAppearance="UseSubStyle" HeaderVisible="No"&amp;gt;
                                &amp;lt;ContentTemplate&amp;gt;
                                    
                                    &amp;lt;ISWebDesktop:WebNavPane ID="WebNavPane1" runat="server" Height="100%" Width="100%" RenderingMode="HTML5" 
                                                              GripImage="" OnBarClick="OnBarClick" BarVisible="3"&amp;gt;
                                        
                                        &amp;lt;Bars&amp;gt;                                                                                                                                                 
                                            &amp;lt;ISWebDesktop:WebNavBar ContentMode="UseInlineContent" CaptionDisplayMode="TextAndImage" 
                                                                    Image="~/Images/1.gif" Name="ManageBankPages" 
                                                                    Text="1"&amp;gt;
                                                    &amp;lt;ContentTemplate&amp;gt;
                                                        
                                                &amp;lt;/ContentTemplate&amp;gt;                                                   
                                            &amp;lt;/ISWebDesktop:WebNavBar&amp;gt;  
                                                  
                                            &amp;lt;ISWebDesktop:WebNavBar ContentMode="UseInlineContent" CaptionDisplayMode="TextAndImage" 
                                                                    Image="~/Images/2.gif" Name="Banks"
                                                                    Text="2"&amp;gt;
                                                &amp;lt;ContentTemplate&amp;gt;
                                                    
                                                &amp;lt;/ContentTemplate&amp;gt;
                                            &amp;lt;/ISWebDesktop:WebNavBar&amp;gt; 
                                              
                                            &amp;lt;ISWebDesktop:WebNavBar ContentMode="UseInlineContent" CaptionDisplayMode="TextAndImage" 
                                                                    Image="~/Images/3.gif" Name="SAP_REC"
                                                                    Text="3"&amp;gt;
                                                &amp;lt;ContentTemplate&amp;gt;
                                                    
                                                &amp;lt;/ContentTemplate&amp;gt;
                                            &amp;lt;/ISWebDesktop:WebNavBar&amp;gt; 
                                                                                                  
                                                    
                                           
                                                                                                                                                                                                                                                                         
                                        &amp;lt;/Bars&amp;gt;
                                        &amp;lt;GripStyle&amp;gt;
                                            &amp;lt;Normal BackColor="LightGray" BackColor2="128, 128, 128" 
                                                GradientType="Vertical" Overflow="Hidden"&amp;gt;
                                            &amp;lt;/Normal&amp;gt;
                                            &amp;lt;Over BaseStyle="Normal"&amp;gt;
                                            &amp;lt;/Over&amp;gt;
                                            &amp;lt;Active BackColor="Gray" BackColor2="0, 0, 0" BaseStyle="Normal"&amp;gt;
                                            &amp;lt;/Active&amp;gt;
                                        &amp;lt;/GripStyle&amp;gt;
                                        &amp;lt;FooterSettings&amp;gt;
                                            &amp;lt;FooterStyle BackColor="White" BackColor2="220, 220, 220"
                                                GradientType="Vertical" HorizontalAlign="Right" Overflow="Hidden" Height="20px" /&amp;gt;
                                        &amp;lt;/FooterSettings&amp;gt;
                                        &amp;lt;BarSettings&amp;gt;
                                            &amp;lt;CaptionStyle BackColor="Gray" BackColor2="245, 245, 245" Font-Bold="True" 
                                                Font-Names="Arial" Font-Size="11pt" ForeColor="White" Height="20px" 
                                                Overflow="Hidden"&amp;gt;
                                                &amp;lt;Padding Bottom="4px" Left="4px" Right="4px" Top="4px" /&amp;gt;
                                            &amp;lt;/CaptionStyle&amp;gt;
                                            &amp;lt;BarStyle&amp;gt;
                                                &amp;lt;Normal BackColor="White" BackColor2="245, 245, 245" Cursor="Hand" 
                                                    Font-Bold="True" Font-Names="Tahoma" Font-Size="8.25pt" GradientType="Vertical" 
                                                    Overflow="Hidden" OverflowX="Hidden" OverflowY="Hidden"&amp;gt;
                                                &amp;lt;/Normal&amp;gt;
                                                &amp;lt;Over BackColor="LightSteelBlue" BaseStyle="Normal"&amp;gt;
                                                &amp;lt;/Over&amp;gt;
                                                &amp;lt;Active BackColor="LightGray" BaseStyle="Normal"&amp;gt;
                                                &amp;lt;/Active&amp;gt;
                                            &amp;lt;/BarStyle&amp;gt;
                                        &amp;lt;/BarSettings&amp;gt;
                                        &amp;lt;BarItemSettings&amp;gt;
                                            &amp;lt;ItemStyle&amp;gt;
                                            &amp;lt;Normal Cursor="Hand" Font-Names="Tahoma" Font-Size="8.25pt" ForeColor="Black" 
                                                Overflow="Hidden"&amp;gt;
                                                &amp;lt;Padding Bottom="3px" Left="6px" Right="6px" Top="3px" /&amp;gt;
                                            &amp;lt;/Normal&amp;gt;
                                            &amp;lt;Over BackColor="WhiteSmoke" BaseStyle="Normal"&amp;gt;
                                            &amp;lt;/Over&amp;gt;
                                            &amp;lt;Active BackColor="#C0C0FF" BaseStyle="Normal" BorderColor="#0000C0" 
                                                BorderStyle="Solid" BorderWidth="1px" Font-Bold="True"&amp;gt;
                                            &amp;lt;/Active&amp;gt;
                                            &amp;lt;/ItemStyle&amp;gt;
                                            &amp;lt;ItemsContainerStyle Font-Names="Tahoma" Font-Size="8.25pt" Height="100%" 
                                                Overflow="Hidden" OverflowY="Hidden" Width="100%"&amp;gt;
                                                &amp;lt;Padding Bottom="4px" Left="4px" Right="4px" Top="4px" /&amp;gt;
                                            &amp;lt;/ItemsContainerStyle&amp;gt;
                                        &amp;lt;/BarItemSettings&amp;gt;
                                        &amp;lt;FrameStyle BackColor="#EFEFEF" BorderColor="Silver" BorderStyle="Solid" BorderWidth="1px" /&amp;gt;                                         
                                    &amp;lt;/ISWebDesktop:WebNavPane&amp;gt;
                                &amp;lt;/ContentTemplate&amp;gt;
                            &amp;lt;/ISWebDesktop:WebPane&amp;gt;
                        &amp;lt;/Panes&amp;gt;
                    &amp;lt;/ISWebDesktop:WebGroupPane&amp;gt;
                &amp;lt;/Panes&amp;gt;
            &amp;lt;/RootGroupPane&amp;gt;
             &amp;lt;FrameStyle BackColor="#E0E0E0" BorderColor="#404040" BorderStyle="None" BorderWidth="0px"
                ForeColor="White"&amp;gt;                
                &amp;lt;BorderSettings&amp;gt;                    
                    &amp;lt;Top Width="0px" /&amp;gt;
                &amp;lt;/BorderSettings&amp;gt;
                &amp;lt;Padding Bottom="0px" Left="0px" Right="0px" Top="0px" /&amp;gt;
            &amp;lt;/FrameStyle&amp;gt;
            &amp;lt;PaneSettings&amp;gt;
                &amp;lt;HeaderSubStyle BackColor="#E0E0E0" BackColor2="White" BorderColor="Gray" BorderStyle="Solid"
                    BorderWidth="1px" Font-Names="Tahoma" Font-Size="8pt" GradientType="Vertical"&amp;gt;
                    &amp;lt;Padding Bottom="0px" Left="0px" Right="0px" Top="0px" /&amp;gt;
                &amp;lt;/HeaderSubStyle&amp;gt;
                &amp;lt;InfoTextStyle Font-Names="Tahoma" Font-Size="8pt" ForeColor="White"&amp;gt;
                &amp;lt;/InfoTextStyle&amp;gt;
                &amp;lt;ContainerStyle BackColor="White" BorderColor="Gray" BorderStyle="Solid" BorderWidth="1px"
                    Font-Names="Tahoma" Font-Size="8pt" ForeColor="Black"&amp;gt;
                    &amp;lt;Padding Bottom="0px" Left="0px" Right="0px" Top="0px" /&amp;gt;
                &amp;lt;/ContainerStyle&amp;gt;
                &amp;lt;HeaderMainStyle BackColor="DimGray" BackColor2="LightGray" BorderColor="Gray" BorderStyle="Solid"
                    BorderWidth="1px" Font-Bold="True" Font-Names="Arial" Font-Size="12pt" ForeColor="White"
                    GradientType="Vertical"&amp;gt;
                    &amp;lt;BorderSettings&amp;gt;
                        &amp;lt;Top Width="0" /&amp;gt;
                    &amp;lt;/BorderSettings&amp;gt;
                    &amp;lt;Margin Bottom="0px" Left="0px" Right="0px" Top="0px" /&amp;gt;
                    &amp;lt;Padding Bottom="0px" Left="0px" Right="0px" Top="0px" /&amp;gt;
                &amp;lt;/HeaderMainStyle&amp;gt;
            &amp;lt;/PaneSettings&amp;gt;
            &amp;lt;SplitterStyle&amp;gt;
                &amp;lt;Active BackColor="Black" BaseStyle="Normal"&amp;gt;
                &amp;lt;/Active&amp;gt;
                &amp;lt;Over BaseStyle="Normal"&amp;gt;
                &amp;lt;/Over&amp;gt;
                &amp;lt;Normal BackColor="#E0E0E0"&amp;gt;
                &amp;lt;/Normal&amp;gt;
            &amp;lt;/SplitterStyle&amp;gt;
            &amp;lt;TextSettings InProgressText="" /&amp;gt;
            &amp;lt;ImagesSettings SplitterGripBottom="SplitterDown.gif" SplitterGripLeft="SplitterLeft.gif"
                SplitterGripRight="SplitterRight.gif" SplitterGripTop="SplitterUp.gif" InProgress="Loading/loading43.gif" /&amp;gt;
            &amp;lt;ClientSideEvents OnInitialize="WebPaneManager1_OnInitialize" /&amp;gt;
        &amp;lt;/ISWebDesktop:WebPaneManager&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; web.config:&lt;/p&gt;
&lt;p&gt;&amp;lt;system.webServer&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;		&lt;/span&gt;&amp;lt;validation validateIntegratedModeConfiguration="false"/&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;		&lt;/span&gt;&amp;lt;handlers&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;			&lt;/span&gt;&amp;lt;remove name="ISRes.axd_GET"/&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;			&lt;/span&gt;&amp;lt;remove name="ISCoverFlow.axd_GET"/&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;			&lt;/span&gt;&amp;lt;add name="ISChart.axd_GET, POST" path="ISChart.axd" verb="GET, POST" type="ISNet.WebUI.WebGrid.Chart.ChartRequestHandler, ISNet.WebUI.WebGrid" preCondition="integratedMode"/&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;			&lt;/span&gt;&amp;lt;add name="ISRes.axd_GET" path="ISRes.axd" verb="GET" type="ISNet.WebUI.WebResourceHandler, ISNet.WebUI, Version=3.0.5000.1, Culture=neutral, PublicKeyToken=b1f2a8511635667a" preCondition="integratedMode"/&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;			&lt;/span&gt;&amp;lt;add name="WebFileUploaderHttpHandler.axd_GET" path="WebFileUploaderHttpHandler.axd" verb="GET" type="ISNet.WebUI.WebTextEditor.WebFileUploaderHttpHandler, ISNet.WebUI.WebTextEditor" preCondition="integratedMode"/&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;			&lt;/span&gt;&amp;lt;add name="ISScheduler.axd_GET" path="ISScheduler.axd" verb="GET" type="ISNet.WebUI.WebScheduler.WebSchedulerRequestHandler, ISNet.WebUI.WebScheduler" preCondition="integratedMode"/&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;			&lt;/span&gt;&amp;lt;add name="IntersoftResource" path="ISRes.axd" verb="GET" preCondition="integratedMode" type="ISNet.WebUI.WebResourceHandler, ISNet.WebUI, Version=3.0.5000.1, Culture=neutral, PublicKeyToken=b1f2a8511635667a" xmlns=""/&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;		&lt;/span&gt;&amp;lt;/handlers&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;		&lt;/span&gt;&amp;lt;modules&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;			&lt;/span&gt;&amp;lt;remove name="ScriptModule"/&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;			&lt;/span&gt;&amp;lt;add name="WebFileUploaderHttpModule_GET" preCondition="managedHandler" type="ISNet.WebUI.WebTextEditor.WebFileUploaderHttpModule, ISNet.WebUI.WebTextEditor"/&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;		&lt;/span&gt;&amp;lt;/modules&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;		&lt;/span&gt;&amp;lt;security&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;			&lt;/span&gt;&amp;lt;requestFiltering&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;				&lt;/span&gt;&amp;lt;requestLimits maxAllowedContentLength="104857600"/&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;			&lt;/span&gt;&amp;lt;/requestFiltering&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;		&lt;/span&gt;&amp;lt;/security&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;	&lt;/span&gt;&amp;lt;/system.webServer&amp;gt;&lt;/p&gt;</description></item><item><title>Upgrading to Intersoft 2013 issues</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/Upgrading-to-Intersoft-2013-issues/</link><pubDate>Thu, 23 Jan 2014 20:50:19 GMT</pubDate><dc:creator>bernard</dc:creator><description>&lt;p&gt;Hi Roi,&lt;/p&gt;&lt;p&gt;This update will be included with our latest hotfix. Thank you for your valuable feedback.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Bernard&lt;/p&gt;</description></item><item><title>Upgrading to Intersoft 2013 issues</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/Upgrading-to-Intersoft-2013-issues/</link><pubDate>Thu, 23 Jan 2014 14:17:12 GMT</pubDate><dc:creator>roiu@a-g-r-e.com</dc:creator><description>&lt;p&gt;Bernard Hi, &lt;/p&gt;&lt;p&gt;Thank you very much for you kind reply. Your patch seems to be working.&lt;/p&gt;
&lt;p&gt;Is this issue about to be fixed this month? Would you be able to inform us on the hotfix release?&lt;/p&gt;
&lt;p&gt;I am still investigating issues with IE 8 and HTML 4. Will update you soon.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;</description></item><item><title>Upgrading to Intersoft 2013 issues</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/Upgrading-to-Intersoft-2013-issues/</link><pubDate>Wed, 22 Jan 2014 22:56:07 GMT</pubDate><dc:creator>bernard</dc:creator><description>&lt;p&gt;Hi Roi,&lt;/p&gt;&lt;p&gt;I think there's regression in our WebButton. I will include this in our hotfix this month. Meanwhile, you could do this in our WebButton:&lt;/p&gt;&lt;pre&gt;function iLoad() {
   var wb = ISGetObject("iWebButton");
   alert('Page Load');
   if(IS.ie11)
      wb.GetElement().click();
   else
      wb.Click();
}&lt;/pre&gt;
&lt;p&gt;We are really sorry for this inconvenience. Hope this helps.&lt;/p&gt;
&lt;p&gt;Regard,&lt;br /&gt;Bernard&lt;/p&gt;</description></item><item><title>Upgrading to Intersoft 2013 issues</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/Upgrading-to-Intersoft-2013-issues/</link><pubDate>Wed, 22 Jan 2014 04:54:59 GMT</pubDate><dc:creator>roiu@a-g-r-e.com</dc:creator><description>&lt;p&gt;Bernard Hi, &lt;/p&gt;&lt;p&gt;The following code causes &lt;b&gt;IE 11&lt;/b&gt; to generate the above errors, which in return cause web page to &lt;b&gt;reload &lt;/b&gt;when simulating a client side WebButton click. This behaviour only occurs on IE 11, while other browsers do not show any errors or reload the page:&lt;/p&gt;&lt;pre&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;/head&amp;gt;
&amp;lt;body onload="iLoad();"&amp;gt;
    &amp;lt;form id="form1" runat="server"&amp;gt;
    &amp;lt;div&amp;gt;
    
                      
             &amp;lt;ISWebDesktop:WebButton CausesValidation="false" ID="iWebButton" runat="server" Height="20px"                                      AutoPostback="false" OnClientClick="iWebButton_OnClientClick"&amp;gt;                
                &amp;lt;FlyPostBackSettings PostHiddenFields="True" PostInputControls="True" /&amp;gt;                  
            &amp;lt;/ISWebDesktop:WebButton&amp;gt;               
        
    &amp;lt;/div&amp;gt;
    &amp;lt;/form&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&amp;lt;script language="javascript" type="text/javascript"&amp;gt;
    function iLoad() {
        var wb = ISGetObject("iWebButton");
        alert('Page Load');
        wb.Click();
    }
    
    function iWebButton_OnClientClick(controlId, parameter) {
        alert("iWebButton Clicked");
    }
    
&amp;lt;/script&amp;gt;
&lt;/pre&gt;
&lt;p&gt; Also, which hander are you refering to when using integrated pipeline. This is my web.config system.WebServer tag. Is it declared ok?&lt;/p&gt;
&lt;p&gt;&amp;lt;system.webServer&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;validation validateIntegratedModeConfiguration="false"/&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;handlers&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;remove name="ISRes.axd_GET"/&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;remove name="ISCoverFlow.axd_GET"/&amp;gt;&lt;/p&gt;
&lt;p&gt;            &lt;/p&gt;
&lt;p&gt;      &amp;lt;add name="ISChart.axd_GET, POST" path="ISChart.axd" verb="GET, POST" type="ISNet.WebUI.WebGrid.Chart.ChartRequestHandler, ISNet.WebUI.WebGrid" preCondition="integratedMode"/&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;add name="ISRes.axd_GET" path="ISRes.axd" verb="GET" type="ISNet.WebUI.WebResourceHandler, ISNet.WebUI, Version=3.0.5000.1, Culture=neutral, PublicKeyToken=b1f2a8511635667a" preCondition="integratedMode"/&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;add name="WebFileUploaderHttpHandler.axd_GET" path="WebFileUploaderHttpHandler.axd" verb="GET" type="ISNet.WebUI.WebTextEditor.WebFileUploaderHttpHandler, ISNet.WebUI.WebTextEditor" preCondition="integratedMode"/&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;add name="ISScheduler.axd_GET" path="ISScheduler.axd" verb="GET" type="ISNet.WebUI.WebScheduler.WebSchedulerRequestHandler, ISNet.WebUI.WebScheduler" preCondition="integratedMode"/&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;add name="IntersoftResource" path="ISRes.axd" verb="GET" preCondition="integratedMode" type="ISNet.WebUI.WebResourceHandler, ISNet.WebUI, Version=3.0.5000.1, Culture=neutral, PublicKeyToken=b1f2a8511635667a" xmlns=""/&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;/handlers&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;modules&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;remove name="ScriptModule" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;add name="WebFileUploaderHttpModule_GET" preCondition="managedHandler" type="ISNet.WebUI.WebTextEditor.WebFileUploaderHttpModule, ISNet.WebUI.WebTextEditor"/&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;/modules&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;security&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;requestFiltering&amp;gt;&lt;/p&gt;
&lt;p&gt;        &amp;lt;requestLimits maxAllowedContentLength="104857600"/&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;/requestFiltering&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;/security&amp;gt;&lt;/p&gt;
&lt;p&gt;  &amp;lt;/system.webServer&amp;gt;&lt;/p&gt;</description></item><item><title>Upgrading to Intersoft 2013 issues</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/Upgrading-to-Intersoft-2013-issues/</link><pubDate>Wed, 15 Jan 2014 08:07:47 GMT</pubDate><dc:creator>roiu@a-g-r-e.com</dc:creator><description>&lt;p&gt;Hello, &lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;I have upgraded my project with intersoft's latest assemblies, and I am encountering some issues.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Before upgrading, I made sure my application works as expected with previous versions of intersoft.&lt;/p&gt;
&lt;p&gt;I'm using Win 7 64-bit enviroment. &lt;br /&gt;Application pool settings: .Net Framework 4, Managed pipeline mode: Integrated.&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;&lt;br /&gt;First, I have made changes to web.config, according to the following link: &amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;http://www.intersoftpt.com/Support/WebUIStudio/Tutorial/Text/Configure-Intersoft-products-to-run-in-IIS7-environment/&lt;/p&gt;
&lt;p&gt;Also, using Common Library as described here:&lt;/p&gt;
&lt;p&gt;http://www.intersoftpt.com/Support/Featured/Tutorial/WebUIStudio/Configure-CommonLibrary-manually-in-IIS/&lt;/p&gt;
&lt;p&gt;I added &amp;lt;!DOCTYPE html&amp;gt; to my aspx file that contains a ISWebDesktop:WebPaneManager control:&lt;/p&gt;&lt;pre&gt; &amp;lt;div style="height:100%; width:100%;"&amp;gt;                        
        &amp;lt;ISWebDesktop:WebPaneManager ID="WebPaneManager1" runat="server" 
                                     Height="100%" Width="100%"
                                     ImagesDirectory="~/Images/" 
                                     RenderingMode="HTML5"&amp;gt;
                &amp;lt;RootGroupPane Name="RootGroupPane" Text="Root GroupPane" GroupPaneHeaderVisible="No"&amp;gt;
                    &amp;lt;Panes&amp;gt;
                        &amp;lt;ISWebDesktop:WebPane ContentScrollable="false" AllowCollapse="No" AllowResize="No" Height="Custom" HeightValue="45px"  
                                              Name="Header" DiscardContainerStyle="false" HeaderVisible="No" ContentMode="UseInlineContent"&amp;gt;                            
                            &amp;lt;ContentTemplate&amp;gt;
                                
                            &amp;lt;/ContentTemplate&amp;gt;
                            &amp;lt;ContentPadding Right="0" Top="0" Left="0" Bottom="0" /&amp;gt;                              
                        &amp;lt;/ISWebDesktop:WebPane&amp;gt;
                        &amp;lt;ISWebDesktop:WebGroupPane GroupType="VerticalTile" Name="GroupContent" Text="Group Content" HeightValue="100%"&amp;gt;
                            &amp;lt;Panes&amp;gt;
                                &amp;lt;ISWebDesktop:WebPane AllowCollapse="No" AllowResize="No" Name="Content" Text="Content" ContentMode="UseIFrame" HeaderAppearance="UseSubStyle" HeaderVisible="No"&amp;gt;
                                    &amp;lt;ContentTemplate&amp;gt;
                                    &amp;lt;/ContentTemplate&amp;gt;                                    
                                &amp;lt;/ISWebDesktop:WebPane&amp;gt;
                                &amp;lt;ISWebDesktop:WebPane AllowCollapse="Yes" AllowResize="Yes" Name="Side" Width="Custom" WidthValue="250px" HeaderAppearance="UseSubStyle" HeaderVisible="No"&amp;gt;
                                    &amp;lt;ContentTemplate&amp;gt;
                                        &amp;lt;div style="display:none;"&amp;gt;&amp;lt;ISWebInput:WebInput ID="hdn_SelectedBarItem" runat="server" Text="" /&amp;gt;&amp;lt;/div&amp;gt;  
                                        &amp;lt;ISWebDesktop:WebNavPane BarVisible="5" ID="WebNavPane1" runat="server" Height="100%" Width="100%"
                                                                 GripImage="" ImagesDirectory="~/Images" OnBarClick="OnBarClick"&amp;gt;
                                            &amp;lt;Bars&amp;gt;                                                                                                                                                 
                                                &amp;lt;ISWebDesktop:WebNavBar ContentMode="UseInlineContent" CaptionDisplayMode="TextAndImage" 
                                                                        Image="~/Images/Bank_Big.gif" Name="ManageBankPages" 
                                                                        Text="1"&amp;gt;
                                                      &amp;lt;ContentTemplate&amp;gt;
                                                          &amp;lt;NB:NavBarAdjustmentBPages ID="NavBarAdjustmentBPages1" runat="server" /&amp;gt;
                                                    &amp;lt;/ContentTemplate&amp;gt;                                                   
                                                &amp;lt;/ISWebDesktop:WebNavBar&amp;gt;  
                                                  
                                                &amp;lt;ISWebDesktop:WebNavBar ContentMode="UseInlineContent" CaptionDisplayMode="TextAndImage" 
                                                                        Image="~/Images/Planning.gif" Name="Banks"
                                                                        Text="2"&amp;gt;
                                                    &amp;lt;ContentTemplate&amp;gt;
                                                        &amp;lt;NB:NavBarAdjustment ID="NavBarAdjustment1" runat="server" /&amp;gt;
                                                    &amp;lt;/ContentTemplate&amp;gt;
                                                &amp;lt;/ISWebDesktop:WebNavBar&amp;gt;   
                                                                                                   
                                                &amp;lt;ISWebDesktop:WebNavBar ContentMode="UseInlineContent" CaptionDisplayMode="TextAndImage" 
                                                                        Image="~/Images/PlanningHoz.png" Name="ReconHOZ" 
                                                                        Text="3"&amp;gt;
                                                    &amp;lt;ContentTemplate&amp;gt;
                                                        &amp;lt;NB:NavBarPlanningHOZ ID="NavBarPlanningHOZ" runat="server" /&amp;gt;
                                                    &amp;lt;/ContentTemplate&amp;gt;
                                                &amp;lt;/ISWebDesktop:WebNavBar&amp;gt;                                                          
                                                    
                                                 
                                                                                                                                                                                                                                                                         
                                            &amp;lt;/Bars&amp;gt;
                                            &amp;lt;BarItemSettings Alignment="Right"&amp;gt;
                                                &amp;lt;ItemsContainerStyle Width="100%" Height="100%" Overflow="Auto" OverflowY="Auto"
                                                    BorderColor="#7B93BF" BorderStyle="Solid" BorderWidth="0px"&amp;gt;
                                                    &amp;lt;Margin Bottom="0px" Left="1px" Right="1px" Top="1px" /&amp;gt;
                                                    &amp;lt;Margin Bottom="0px" Left="1px" Right="1px" Top="1px" /&amp;gt;
                                                    &amp;lt;BorderSettings&amp;gt;
                                                        &amp;lt;Bottom Color="123, 147, 191" Style="solid" Width="3px" /&amp;gt;
                                                        &amp;lt;Bottom Color="123, 147, 191" Style="solid" Width="3px" /&amp;gt;
                                                    &amp;lt;/BorderSettings&amp;gt;
                                                &amp;lt;/ItemsContainerStyle&amp;gt;
                                                &amp;lt;ItemStyle&amp;gt;                                                            
                                                    &amp;lt;Active BackColor="#E0ECFA" BaseStyle="Normal" BorderColor="#7B93BF" BorderStyle="Solid"
                                                        BorderWidth="0px" Font-Bold="True" Width="100%"&amp;gt;
                                                        &amp;lt;Margin Left="0px" Right="0px" /&amp;gt;
                                                        &amp;lt;Padding Left="0px" Right="0px" /&amp;gt;
                                                        &amp;lt;Margin Left="0px" Right="0px" /&amp;gt;
                                                        &amp;lt;Padding Left="0px" Right="0px" /&amp;gt;
                                                    &amp;lt;/Active&amp;gt;
                                                    &amp;lt;Over BackColor="WhiteSmoke" BaseStyle="Normal"&amp;gt;&amp;lt;/Over&amp;gt;
                                                    &amp;lt;Normal Cursor="Hand" Font-Names="Tahoma" Font-Size="8.25pt" Overflow="Hidden"&amp;gt;
                                                        &amp;lt;Padding Bottom="3px" Left="6px" Right="6px" Top="3px" /&amp;gt;
                                                        &amp;lt;Padding Bottom="3px" Left="6px" Right="6px" Top="3px" /&amp;gt;
                                                    &amp;lt;/Normal&amp;gt;
                                                &amp;lt;/ItemStyle&amp;gt;
                                            &amp;lt;/BarItemSettings&amp;gt;                                                                                                                                   
                                            &amp;lt;FrameStyle BorderWidth="0px" BorderColor="White" BackColor="White"&amp;gt;&amp;lt;/FrameStyle&amp;gt;                                            
                                            &amp;lt;GripStyle&amp;gt;
                                                &amp;lt;Active Height="2px" BackColor2="Black" BaseStyle="Normal" BackColor="Gray"&amp;gt;
                                                &amp;lt;/Active&amp;gt;
                                                &amp;lt;Over Height="2px" BaseStyle="Normal"&amp;gt;
                                                &amp;lt;/Over&amp;gt;
                                                &amp;lt;Normal Height="2px" BackColor2="231, 236, 242" BackColor="#F6F9F9" GradientType="Vertical"
                                                    Overflow="Hidden"&amp;gt;
                                                &amp;lt;/Normal&amp;gt;
                                            &amp;lt;/GripStyle&amp;gt;
                                            &amp;lt;FooterSettings&amp;gt;
                                                &amp;lt;FooterStyle BackColor="White" BackColor2="Gainsboro" GradientType="Vertical" HorizontalAlign="Right"
                                                    Overflow="Hidden" /&amp;gt;
                                            &amp;lt;/FooterSettings&amp;gt;
                                        &amp;lt;/ISWebDesktop:WebNavPane&amp;gt;
                                    &amp;lt;/ContentTemplate&amp;gt;
                                &amp;lt;/ISWebDesktop:WebPane&amp;gt;
                            &amp;lt;/Panes&amp;gt;
                        &amp;lt;/ISWebDesktop:WebGroupPane&amp;gt;
                    &amp;lt;/Panes&amp;gt;
                &amp;lt;/RootGroupPane&amp;gt;
                &amp;lt;FrameStyle BackColor="#E0E0E0" BorderColor="#404040" BorderStyle="None" BorderWidth="0px"
                           ForeColor="White"&amp;gt;
                           &amp;lt;BorderSettings&amp;gt;
                            &amp;lt;Top Width="0px" /&amp;gt;
                           &amp;lt;/BorderSettings&amp;gt;
                           &amp;lt;Padding Bottom="0px" Left="0px" Right="0px" Top="0px" /&amp;gt;
               &amp;lt;/FrameStyle&amp;gt;
                &amp;lt;PaneSettings&amp;gt;
                    &amp;lt;HeaderSubStyle BackColor="#E0E0E0" BackColor2="White" BorderColor="Gray" BorderStyle="Solid"
                        BorderWidth="1px" Font-Names="Tahoma" Font-Size="8pt" GradientType="Vertical"&amp;gt;
                        &amp;lt;Padding Bottom="0px" Left="0px" Right="0px" Top="0px" /&amp;gt;
                    &amp;lt;/HeaderSubStyle&amp;gt;
                    &amp;lt;InfoTextStyle Font-Names="Tahoma" Font-Size="8pt" ForeColor="White"&amp;gt;
                    &amp;lt;/InfoTextStyle&amp;gt;
                    &amp;lt;ContainerStyle BackColor="White" BorderColor="Gray" BorderStyle="Solid" BorderWidth="1px"
                        Font-Names="Tahoma" Font-Size="8pt" ForeColor="Black"&amp;gt;
                        &amp;lt;Padding Bottom="0px" Left="0px" Right="0px" Top="0px" /&amp;gt;
                    &amp;lt;/ContainerStyle&amp;gt;
                    &amp;lt;HeaderMainStyle BackColor="DimGray" BackColor2="LightGray" BorderColor="Gray" BorderStyle="Solid"
                        BorderWidth="1px" Font-Bold="True" Font-Names="Arial" Font-Size="12pt" ForeColor="White"
                        GradientType="Vertical"&amp;gt;
                        &amp;lt;BorderSettings&amp;gt;
                        &amp;lt;Top Width="0"  /&amp;gt;
                        &amp;lt;/BorderSettings&amp;gt;
                        &amp;lt;Margin  Bottom="0px" Left="0px" Right="0px" Top="0px"  /&amp;gt;
                        &amp;lt;Padding Bottom="0px" Left="0px" Right="0px" Top="0px" /&amp;gt;
                    &amp;lt;/HeaderMainStyle&amp;gt;
                &amp;lt;/PaneSettings&amp;gt;
                &amp;lt;SplitterStyle&amp;gt;
                    &amp;lt;Active BackColor="Black" BaseStyle="Normal"&amp;gt;
                    &amp;lt;/Active&amp;gt;
                    &amp;lt;Over BaseStyle="Normal"&amp;gt;
                    &amp;lt;/Over&amp;gt;
                    &amp;lt;Normal BackColor="#E0E0E0"&amp;gt;
                    &amp;lt;/Normal&amp;gt;
                &amp;lt;/SplitterStyle&amp;gt;
                &amp;lt;TextSettings InProgressText="" /&amp;gt;
                &amp;lt;ImagesSettings SplitterGripBottom="SplitterDown.gif" SplitterGripLeft="SplitterLeft.gif"
                                SplitterGripRight="SplitterRight.gif" SplitterGripTop="SplitterUp.gif"
                                InProgress="Loading/loading43.gif" /&amp;gt;
                &amp;lt;ClientSideEvents OnInitialize="WebPaneManager1_OnInitialize" /&amp;gt;
         &amp;lt;/ISWebDesktop:WebPaneManager&amp;gt;      
    &amp;lt;/div&amp;gt;  
function WebPaneManager1_OnInitialize(controlId) {
            var navPane = ISGetObject("WebNavPane1");
            try {
                var hdn_SelectedBarItem = ISGetObject("hdn_SelectedBarItem");
                var _SelectedBarItem = hdn_SelectedBarItem.GetValueData();
                if (_SelectedBarItem != "" &amp;amp;&amp;amp; navPane.BarItems.GetNamedItem(_SelectedBarItem) != null) {
                    navPane.BarItems[navPane.BarItems.GetNamedItem(_SelectedBarItem).Index].Click();
                } else {
                    navPane.BarItems[0].Click();
                }
            } catch (e) {
                
                //navPane.BarItems[0].Click();
            }
            
            return true;
        }
function OnBarClick(Id, BarItem) {
            var Nindex = BarItem.Index;
            var navPane = ISGetObject("WebNavPane1");
            var paneManager = ISGetObject("WebPaneManager1");
            var pane = paneManager.GetPaneByName("Content");
            if (navPane.BarItems[Nindex].Items.length != "0") {
                navPane.BarItems[Nindex].Items[0].Click();
            } else {
                var _BarItemName = navPane.BarItems[Nindex].Name;
                switch (_BarItemName) {
                    case "ManageBankPages":
                            pane.SetContentURL("");
                        break;
                    case "Banks":
                            pane.SetContentURL("");
                        break;
                    case "ReconHOZ":
                           pane.SetContentURL("");
                        break;
                }
    
            }
            return true;
        }&lt;/pre&gt;&lt;pre&gt;&lt;span style="font-family: 'lucida sans unicode'; font-size: 10pt;"&gt; &lt;/span&gt;&lt;span style="font-family: 'lucida sans unicode'; font-size: 10pt;"&gt; &lt;/span&gt;&lt;/pre&gt;
&lt;p&gt;Now while trying to evaluate the new version, there are several issues I'm encountering:&lt;/p&gt;
&lt;p&gt;1. The control is not streched to 100% heigh. It looks "cropped".&lt;/p&gt;
&lt;p&gt;If I remove &lt;span style="font-size: 10pt;"&gt;RenderingMode="HTML5" attribute, height issue seems to be resolved, but&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;&amp;nbsp;I receive the following javascript errors (chrome):&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;Uncaught TypeError: Cannot read property 'children' of undefined ISRes.axd?D/WebNavPane.js/40720010:7&lt;/span&gt;&lt;/p&gt;
&lt;ol class="children expanded" style="box-sizing: border-box; position: relative; margin: 0px; cursor: default; min-width: 100%; list-style-type: none; -webkit-padding-start: 12px; font-size: 12px; line-height: 12px; color: rgb(34, 34, 34); font-family: consolas, 'lucida console', monospace; background-color: rgb(255, 255, 255); padding: 0px 0px 0px 12px !important;"&gt;&lt;li title="" style="box-sizing: border-box; padding: 0px 0px 0px 14px; margin-top: 1px; margin-left: -2px; word-wrap: break-word;"&gt;
&lt;div style="box-sizing: border-box;"&gt;&lt;span class="console-message-text source-code" style="box-sizing: border-box; white-space: pre-wrap; color: red !important;"&gt;wd7e84.mf1487&lt;/span&gt;&lt;a href="http://localhost/C4E-BA-V4/ISRes.axd?D/WebNavPane.js/40720010" class="console-message-url webkit-html-resource-link" title="http://localhost/C4E-BA-V4/ISRes.axd?D/WebNavPane.js/40720010:7" style="box-sizing: border-box; float: right; text-align: right; max-width: 100%; margin-left: 4px; color: rgb(84, 84, 84); cursor: pointer;"&gt;ISRes.axd?D/WebNavPane.js/40720010:7&lt;/a&gt;&lt;/div&gt;&lt;/li&gt;&lt;li title="" style="box-sizing: border-box; padding: 0px 0px 0px 14px; margin-top: 1px; margin-left: -2px; word-wrap: break-word;"&gt;
&lt;div style="box-sizing: border-box;"&gt;&lt;span class="console-message-text source-code" style="box-sizing: border-box; white-space: pre-wrap; color: red !important;"&gt;Listener.Fire&lt;/span&gt;&lt;a href="http://localhost/C4E-BA-V4/ISRes.axd?F/ISCore.js/305000910" class="console-message-url webkit-html-resource-link" title="http://localhost/C4E-BA-V4/ISRes.axd?F/ISCore.js/305000910:11" style="box-sizing: border-box; float: right; text-align: right; max-width: 100%; margin-left: 4px; color: rgb(84, 84, 84); cursor: pointer;"&gt;ISRes.axd?F/ISCore.js/305000910:11&lt;/a&gt;&lt;/div&gt;&lt;/li&gt;&lt;li title="" style="box-sizing: border-box; padding: 0px 0px 0px 14px; margin-top: 1px; margin-left: -2px; word-wrap: break-word;"&gt;
&lt;div style="box-sizing: border-box;"&gt;&lt;span class="console-message-text source-code" style="box-sizing: border-box; white-space: pre-wrap; color: red !important;"&gt;oSource.(anonymous function)&lt;/span&gt;&lt;a href="http://localhost/C4E-BA-V4/ISRes.axd?F/ISCore.js/305000910" class="console-message-url webkit-html-resource-link" title="http://localhost/C4E-BA-V4/ISRes.axd?F/ISCore.js/305000910:11" style="box-sizing: border-box; float: right; text-align: right; max-width: 100%; margin-left: 4px; color: rgb(84, 84, 84); cursor: pointer;"&gt;ISRes.axd?F/ISCore.js/305000910:11&lt;/a&gt;&lt;/div&gt;&lt;/li&gt;&lt;li title="" style="box-sizing: border-box; padding: 0px 0px 0px 14px; margin-top: 1px; margin-left: -2px; word-wrap: break-word;"&gt;
&lt;div style="box-sizing: border-box;"&gt;&lt;span class="console-message-text source-code" style="box-sizing: border-box; white-space: pre-wrap; color: red !important;"&gt;vf4d4.fireEvent&lt;/span&gt;&lt;a href="http://localhost/C4E-BA-V4/ISRes.axd?F/IEMozBridge.js/305000910" class="console-message-url webkit-html-resource-link" title="http://localhost/C4E-BA-V4/ISRes.axd?F/IEMozBridge.js/305000910:7" style="box-sizing: border-box; float: right; text-align: right; max-width: 100%; margin-left: 4px; color: rgb(84, 84, 84); cursor: pointer;"&gt;ISRes.axd?F/IEMozBridge.js/305000910:7&lt;/a&gt;&lt;/div&gt;&lt;/li&gt;&lt;li title="" class="selected" style="box-sizing: border-box; padding: 0px 0px 0px 14px; margin-top: 1px; margin-left: -2px; word-wrap: break-word;"&gt;
&lt;div style="box-sizing: border-box;"&gt;&lt;span class="console-message-text source-code" style="box-sizing: border-box; white-space: pre-wrap; color: red !important;"&gt;(anonymous function)&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;body.scrollLeft is deprecated in strict mode. Please use 'documentElement.scrollLeft' if in strict mode and 'body.scrollLeft' only if in quirks mode. ISRes.axd?F/IEMozBridge.js/305000910:1086&lt;/p&gt;
&lt;p&gt;body.scrollTop is deprecated in strict mode. Please use 'documentElement.scrollTop' if in strict mode and 'body.scrollTop' only if in quirks mode. ISRes.axd?F/IEMozBridge.js/305000910:1116&lt;/p&gt;
&lt;p&gt;event.returnValue is deprecated. Please use the standard event.preventDefault() instead. ISRes.axd?C/WebCombo.js/607200257:7&lt;/p&gt;
&lt;div&gt;2. These errors probably causes my nav bars content to disappear with:&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;&amp;lt;div id="WebPaneManager1_ViewSide_WebNavPane1_ManageBankPages_items" align="Right" class="WebPaneManager1ViewSideWebNavPane1-BarItemSettings-ItemsContainerStyle" &lt;b&gt;style="display: none;"&lt;/b&gt;&amp;gt;&lt;/div&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;I'm pretty lost here. Could someone please guide me through best practice upgrade methods?&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;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item></channel></rss>