Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
635
Ultrawebtab Problem
posted

<div id="dvContent" class="x-panel-body" style="position:absolute;top:50px;;overflow:auto; overflow-x: hidden;display:block;bottom:0px;width:100%;border-style:none">
                        <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Always" RenderMode="Inline">
                            <ContentTemplate>
                                    <asp:Panel ID="pnl" runat="server">
                             <ignav:UltraWebTree ID="TreeView1" runat="server" EnableAppStyling="False" EnableViewState="true" CssClass="featureTree" Style="cursor: pointer;display:block;position:relative;bottom:5px"
                                EnableTheming="false"  Visible="true" AutoPostBack="false"  Height="100%"  ClientIDMode="Static"
                                WebTreeTarget="ClassicTree"  OnNodeClicked="TreeView1_NodeClicked" OnNodeExpanded="TreeView1_NodeExpanded">
                            </ignav:UltraWebTree>
                            </asp:Panel>
                            </ContentTemplate>
                        <Triggers >
                        <asp:AsyncPostBackTrigger ControlID="TreeView1" EventName="NodeExpanded"  />
                        <%--<asp:AsyncPostBackTrigger ControlID="TreeView1" EventName="NodeClicked"  />--%>
                        </Triggers>
    </asp:UpdatePanel>                
</div>

<div class="ui-layout-content" style="height:100%">
                    <asp:UpdatePanel ID="UpdatePanel2" runat="server" UpdateMode="Conditional" RenderMode="Inline">
                        <ContentTemplate>
                    <asp:Panel ID="Panel1" runat="server" Height="100%" >
                            <igtab:UltraWebTab ID="tabControl" BorderStyle="None" runat="server" ViewStateMode="Enabled" DisplayMode="Scrollable"  LoadAllTargetUrls="false"  EnableAppStyling="False"
                                    EnableTheming="false" AutoPostBack="false" Height="100%" EnableViewState="true"
                                    Width="100%" SelectedTab="-1" Visible="false" ClientIDMode="Static" BrowserTarget="Auto">
                                    <DefaultTabStyle CssClass="DefaultTabStyle"></DefaultTabStyle>
                                    <HoverTabStyle CssClass="HoverTabStyle"></HoverTabStyle>
                                    <SelectedTabStyle CssClass="SelectedTabStyle"></SelectedTabStyle>
                                    <Tabs>
                                        <igtab:TabSeparator>
                                        </igtab:TabSeparator>
                                    </Tabs>
                                    
                                <%--    <RoundedImage LeftSideWidth="7" RightSideWidth="6" ShiftOfImages="2" SelectedImage="ig_tab_winXP1.gif"
                    NormalImage="ig_tab_winXP3.gif" HoverImage="ig_tab_winXP2.gif" FillStyle="LeftMergedWithCenter"></RoundedImage>--%>
                            </igtab:UltraWebTab>
                            </asp:Panel>
                            </ContentTemplate>
                            <Triggers>
                                <asp:AsyncPostBackTrigger ControlID="tabControl" EventName="TabClick" />
                                <%--<asp:AsyncPostBackTrigger ControlID="tabControl" EventName="Init" />
                                <%--<asp:PostBackTrigger ControlID="tabControl" />--%>
                            </Triggers>
                        
                    </asp:UpdatePanel>
                </div>

I have ultrawebtree on left side and ultrawebtab on right side.I am adding  dynamically tabs on click on treenode and binding target url property of tab.But sometimes the tab doesnt remains in its current state on node click of treeview or selected tab change of tab.I have enable enableviewstate=true.In case of pdf file if you are on page 40 then after tab change you may go to page 1st.I have tried using LoadAlltargeturl=true but i am having microsoft word files which gives dialog box when opened.So its not possible to use LoadAlltargeturl.So is there any way so that my tab doesnt flicker at all

Parents
No Data
Reply Children