﻿<?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 - WebTreeView - Can't select tree-view items with IE11</title><link>http://www.intersoftsolutions.com/Community/WebTreeView/Cant-select-tree-view-items-with-IE11/</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>Can't select tree-view items with IE11</title><link>http://www.intersoftsolutions.com/Community/WebTreeView/Cant-select-tree-view-items-with-IE11/</link><pubDate>Mon, 10 Aug 2015 06:36:22 GMT</pubDate><dc:creator>yudi</dc:creator><category>TreeView Select</category><description>&lt;p&gt;&lt;span style="color: #1f497d;"&gt;You can try to use DOM Inspector to find out if there is any css declaration which may override the style for html, body, and form.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;However, glad to hear the good news.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Should you need further assistance or run into any problems regarding our controls, feel free to post it into our community. We would be happy to assist you again.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Can't select tree-view items with IE11</title><link>http://www.intersoftsolutions.com/Community/WebTreeView/Cant-select-tree-view-items-with-IE11/</link><pubDate>Fri, 07 Aug 2015 09:16:06 GMT</pubDate><dc:creator>tj@domesticsoft.com</dc:creator><category>TreeView Select</category><description>&lt;p&gt;Hi and thank you for your response.&lt;br&gt;I found the problem but I don't understand why the change is needed.&lt;br&gt;I had to add this into the header section of the html file.&lt;br&gt;&lt;/p&gt;&lt;pre&gt;     &amp;lt;style type="text/css"&amp;gt;        html, body, form
        {
            height: 100%;
            width: 100%;
            margin: 0px;
            padding: 0px;
        }
    &amp;lt;/style&amp;gt;
&lt;/pre&gt;&lt;p&gt;But I already had this code in a CSS flie and included that in the header section such&lt;br&gt;&amp;lt;link href="~/Css/mainStyle.css" rel="stylesheet" type="text/css" /&amp;gt;&lt;br&gt;But if I do it that way the tree-view failure hapens when browsing in IE11.&lt;br&gt;To be sure I have even tried to put nothing else than this needed style into the css file. But even then the problem still happen.&lt;/p&gt;&lt;p&gt;mainStyle.css:&lt;br&gt;&lt;/p&gt;&lt;pre&gt;html, body, form
{
   height: 100%;
   width: 100%;
   margin: 0px;
   padding: 0px;
}&lt;/pre&gt;&lt;p&gt;TJ&lt;br&gt;&lt;/p&gt;</description></item><item><title>Can't select tree-view items with IE11</title><link>http://www.intersoftsolutions.com/Community/WebTreeView/Cant-select-tree-view-items-with-IE11/</link><pubDate>Fri, 07 Aug 2015 07:38:36 GMT</pubDate><dc:creator>yudi</dc:creator><category>TreeView Select</category><description>&lt;p&gt;&lt;span style="color: #1f497d;"&gt;I tried to reproduce the problem by modifying SimpleLayout.aspx sample file of WebPaneManager. An unbound WebTreeView is added inside the ContentTemplate of "Side" WebPane.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;ISWebTreeView:WebTreeView ID="WebTreeView1" runat="server" Height="300px" Width="250px"
    ExpandedDepth="-1" RenderingMode="HTML5"&amp;gt;
    &amp;lt;Nodes&amp;gt;
        &amp;lt;ISWebTreeView:WebTreeViewNode Name="WebTreeViewNode0" Text="Personal Folders"
            Expanded="True"&amp;gt;
            &amp;lt;ISWebTreeView:WebTreeViewNode Name="DeletedItems" Text="Deleted Items"&amp;gt;
            &amp;lt;/ISWebTreeView:WebTreeViewNode&amp;gt;
            &amp;lt;ISWebTreeView:WebTreeViewNode Name="Drafts" Text="Drafts"&amp;gt;
            &amp;lt;/ISWebTreeView:WebTreeViewNode&amp;gt;
            &amp;lt;ISWebTreeView:WebTreeViewNode Name="Inbox" Text="Inbox"&amp;gt;
            &amp;lt;/ISWebTreeView:WebTreeViewNode&amp;gt;
            &amp;lt;ISWebTreeView:WebTreeViewNode Name="JunkE-mail" Text="Junk E-mail"&amp;gt;
            &amp;lt;/ISWebTreeView:WebTreeViewNode&amp;gt;
            &amp;lt;ISWebTreeView:WebTreeViewNode Name="Outbox" Text="Outbox"&amp;gt;
            &amp;lt;/ISWebTreeView:WebTreeViewNode&amp;gt;
            &amp;lt;ISWebTreeView:WebTreeViewNode Name="RSSFeeds" Text="RSS Feeds"&amp;gt;
            &amp;lt;/ISWebTreeView:WebTreeViewNode&amp;gt;
            &amp;lt;ISWebTreeView:WebTreeViewNode Name="SentItems" Text="Sent Items"&amp;gt;
            &amp;lt;/ISWebTreeView:WebTreeViewNode&amp;gt;
            &amp;lt;ISWebTreeView:WebTreeViewNode Name="SearchFolders" Text="Search Folders"&amp;gt;
                &amp;lt;ISWebTreeView:WebTreeViewNode Name="CategorizedMail" Text="Categorized Mail"&amp;gt;
                &amp;lt;/ISWebTreeView:WebTreeViewNode&amp;gt;
                &amp;lt;ISWebTreeView:WebTreeViewNode Name="ForFollowUp" Text="For Follow Up"&amp;gt;
                &amp;lt;/ISWebTreeView:WebTreeViewNode&amp;gt;
                &amp;lt;ISWebTreeView:WebTreeViewNode Name="LargeMail" Text="Large Mail"&amp;gt;
                &amp;lt;/ISWebTreeView:WebTreeViewNode&amp;gt;
                &amp;lt;ISWebTreeView:WebTreeViewNode Name="UnreadMail" Text="Unread Mail"&amp;gt;
                &amp;lt;/ISWebTreeView:WebTreeViewNode&amp;gt;
            &amp;lt;/ISWebTreeView:WebTreeViewNode&amp;gt;
        &amp;lt;/ISWebTreeView:WebTreeViewNode&amp;gt;
        &amp;lt;ISWebTreeView:WebTreeViewNode Name="WebTreeViewNode1" Text="Archive Folder"&amp;gt;
            &amp;lt;ISWebTreeView:WebTreeViewNode Name="DeletedItems2" Text="Deleted Items"&amp;gt;
            &amp;lt;/ISWebTreeView:WebTreeViewNode&amp;gt;
            &amp;lt;ISWebTreeView:WebTreeViewNode Name="SentItems" Text="Sent Items"&amp;gt;
            &amp;lt;/ISWebTreeView:WebTreeViewNode&amp;gt;
            &amp;lt;ISWebTreeView:WebTreeViewNode Name="SearchFolders2" Text="Search Folders"&amp;gt;
            &amp;lt;/ISWebTreeView:WebTreeViewNode&amp;gt;
        &amp;lt;/ISWebTreeView:WebTreeViewNode&amp;gt;
    &amp;lt;/Nodes&amp;gt;
    &amp;lt;NodeSettings EnableAnimation="True" /&amp;gt;
&amp;lt;/ISWebTreeView:WebTreeView&amp;gt;&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;To become more similar to your WebPane settings, the properties/attributes of "Side" pane is set to:&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;&amp;lt;ISWebDesktop:WebPane Name="Side" Text="Side" Width="Custom" WidthValue="15%"
    HeaderVisible="Yes" AllowCollapse="No" HeightValue="70%" Height="Custom" ContentScrollable="false"&amp;gt;
    &amp;lt;ContentTemplate&amp;gt;
        &amp;lt;ISWebTreeView:WebTreeView ID="WebTreeView1" runat="server" Height="300px" Width="250px"
            ExpandedDepth="-1" RenderingMode="HTML5"&amp;gt;
            ...
            &amp;lt;NodeSettings EnableAnimation="True" /&amp;gt;
        &amp;lt;/ISWebTreeView:WebTreeView&amp;gt;
    &amp;lt;/ContentTemplate&amp;gt;
&amp;lt;/ISWebDesktop:WebPane&amp;gt;&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Save the changes and view the modified page in IE 11 browser. The reported problem doesn't persist. User can select node; WebTreeViewNode becomes underlined when user hovering mouse pointer over a node.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;I enclose the modified sample for your reference. Please feel free to let me know if you find anything that I might miss during my attempt to reproduce the reported problem.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Can't select tree-view items with IE11</title><link>http://www.intersoftsolutions.com/Community/WebTreeView/Cant-select-tree-view-items-with-IE11/</link><pubDate>Thu, 06 Aug 2015 16:31:00 GMT</pubDate><dc:creator>tj@domesticsoft.com</dc:creator><category>TreeView Select</category><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;I have a WebTreeView (version 1.0.1500.403) on a WebDesktop-WepPane. as shown below:&lt;/p&gt;&lt;pre&gt;&amp;lt;ISWebDesktop:WebPane HeaderVisible="Yes" AllowCollapse="No" Name="paneTree" HeightValue="70%" Height="Custom" CaptionDisplayMode="UseTemplate" HeaderAppearance="UseSubStyle" ContentScrollable="false"&amp;gt;
    &amp;lt;HeaderTemplate&amp;gt;
        &amp;lt;asp:Image ID="Image3" runat="server" ImageUrl="~/Images/Icons/Tree.ico" Height="16" Width="16" /&amp;gt;
        &amp;lt;asp:Label ID="c__lblSystemTreeHeader" runat="server" Text="System tree" /&amp;gt;
    &amp;lt;/HeaderTemplate&amp;gt;
    &amp;lt;ContentTemplate &amp;gt;
        &amp;lt;!-- *************************************************************************************** --&amp;gt;
        &amp;lt;!-- Treeview Pane,                                                                          --&amp;gt;
        &amp;lt;!-- *************************************************************************************** --&amp;gt;
        &amp;lt;ISWebTreeView:WebTreeView ID="c_treeView" runat="server" EnableManagedTheming="false"  Width="100%" Height="100%"  EnableLoadOnDemand="true" OnInitializeChildNodes="TreeView_OnInitializeChildNodes"&amp;gt;
            &amp;lt;ClientSideEvents OnNodeSelect="c_treeView_OnNodeSelect" OnInitialize="c_treeView_OnInitialize" /&amp;gt;
        &amp;lt;/ISWebTreeView:WebTreeView&amp;gt;
   &amp;lt;/ContentTemplate&amp;gt;
&amp;lt;/ISWebDesktop:WebPane&amp;gt;&lt;/pre&gt;&lt;p&gt;This works perfectly in Google Chrome and Mozilla FireFox. But in IE11 the treeview is populated correctly and I can expand each node. But a node can not be selected. Why is that? Even when the mouse hovers over a node it does not become underlined as in the other browsers.&lt;br&gt;I have tried to put RenderingMode="HTML5" on the treeview control, but it did not help.&lt;br&gt;The document is an HTML5 document starting with&lt;br&gt;&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br&gt;&amp;lt;html&amp;gt;&lt;br&gt;&lt;br&gt;&lt;/p&gt;</description></item></channel></rss>