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
85
Javascript error for web splitter control
posted

Hi all

I am geting javascript error "Object does not support this property or method" for Web splitter control.

Below is my aspx code.

<asp:Content ID="Content2" ContentPlaceHolderID="treeContent" runat="Server">

<asp:UpdatePanel ID="UpdatePanel1" runat="server">
            <ContentTemplate>
                <%--  <table style="height: 297px">--%>
                <cc1:WebSplitter ID="WebSplitter2" runat="server" Height="200px" Width="300px">
                    <Panes>
                        <cc1:SplitterPane runat="server">
                        </cc1:SplitterPane>
                        <cc1:SplitterPane runat="server">
                        </cc1:SplitterPane>
                    </Panes>
                </cc1:WebSplitter>
              
                <%-- </table>--%>
            </ContentTemplate>
        </asp:UpdatePanel>
</asp:Content>