Login
Latest Development Blogs
Forum Topics Post
Browse By Tag
Hi ,
I meet a problem when I use WebTreeView . In my page , the left window is a tree , and the right window is the main page . When I click the nodes of the tree , the main page should change correspondingly . In the IE browser , it work smoothly . But in the Chrome browser , When I click the nodes of the tree , the right window is not any change .
I want to know whether Chrome browser support the control of WebTreeView . What is the problem ?
Anyone can help me ? Thank you very much !
Hello,
It supports chrome browser. Can you send me your simple sample scenario? I tried to make one and it works fine.
Regards,Handy
I use "iframe" . WebTreeViewis on the left and WebGrid is on the right. When I click the nodes of the tree , the WebGrid on the right should be changed ! it work smoothly in the IE . <%@ Page Language="C#" MasterPageFile="~/WebMaster/MainpageWithTree_NoAJax.Master" AutoEventWireup="true" CodeBehind="OU_Frame.aspx.cs" Inherits="EpointNetoffice7.Pages.SubUserManage.OU_Frame" Title="OU" %> <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="server"> <iframe width="100%" height="100%" name="left" scrolling="auto" frameborder="0" src="OU_LeftTree.aspx"> </iframe> </asp:Content> <asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder2" runat="server"> <iframe height="100%" name="main1" scrolling="auto" src="OU_List.aspx" frameborder="0" width="100%"> </iframe> </asp:Content> <ISWebTreeView:WebTreeView ID="TreeViewOU" runat="server" EnableLoadOnDemand="true" AllowExpandNodeOnSelect="true" AutoSelectOnNodeExpandCollapse="true" OnInitializeChildNodes="WebTreeView2_InitializeChildNodes" AllowAddNode="True" AllowDeleteNode="True" LineImageHeight="-1" LineImageWidth="-1" Height="300px"> <ClientSideEvents OnNodeExpand="TreeView_NodeExpand_Common" OnInitialize="TreeView_Initialize" OnNodeSelect="TreeView_NodeSelect" /> <LoadingStyle CssClass="TreeViewLoading"> </LoadingStyle> <FrameStyle CssClass="TreeViewFrame" BackColor="Transparent" BorderWidth="0"> </FrameStyle> <NodeStyle> <Normal CssClass="TreeViewNode_N"> </Normal> <Over CssClass="TreeViewNode_O"> </Over> <Active CssClass="TreeViewNode_A"> </Active> </NodeStyle> </ISWebTreeView:WebTreeView>
<%@ Page Language="C#" MasterPageFile="~/WebMaster/MainpageWithTree_NoAJax.Master" AutoEventWireup="true" CodeBehind="OU_Frame.aspx.cs" Inherits="EpointNetoffice7.Pages.SubUserManage.OU_Frame" Title="OU" %> <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="server"> <iframe width="100%" height="100%" name="left" scrolling="auto" frameborder="0" src="OU_LeftTree.aspx"> </iframe> </asp:Content> <asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder2" runat="server"> <iframe height="100%" name="main1" scrolling="auto" src="OU_List.aspx" frameborder="0" width="100%"> </iframe> </asp:Content> <ISWebTreeView:WebTreeView ID="TreeViewOU" runat="server" EnableLoadOnDemand="true" AllowExpandNodeOnSelect="true" AutoSelectOnNodeExpandCollapse="true" OnInitializeChildNodes="WebTreeView2_InitializeChildNodes" AllowAddNode="True" AllowDeleteNode="True" LineImageHeight="-1" LineImageWidth="-1" Height="300px"> <ClientSideEvents OnNodeExpand="TreeView_NodeExpand_Common" OnInitialize="TreeView_Initialize" OnNodeSelect="TreeView_NodeSelect" /> <LoadingStyle CssClass="TreeViewLoading"> </LoadingStyle> <FrameStyle CssClass="TreeViewFrame" BackColor="Transparent" BorderWidth="0"> </FrameStyle> <NodeStyle> <Normal CssClass="TreeViewNode_N"> </Normal> <Over CssClass="TreeViewNode_O"> </Over> <Active CssClass="TreeViewNode_A"> </Active> </NodeStyle> </ISWebTreeView:WebTreeView>
I think it is not because our WebTreeView, but closely to iframe issue. Since you are not using our control in loading IFrame, then something must be wrong with the code that load iframe content. If you seen my sample, I used WebPaneManager. It can load iframe content correctly in there.So, I don't think if this is an issue in our WebTreeView, since your load iframe code is not came from us.