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
570
Websplitter in ASP.NET Web Application?
posted

Hi.  I'm having problems getting the web splitter control to work.  I get the contents of the 2 panes but no sizing line between them.

 I've read that the web splitter control must be in a ASP.NET AJAX website project.  My project is an ASP.NET Web Application.  Should that work?

 I'm using VS 2008, .NET 3.5, NetAdvantage 8.3 for .NET 3.5, and IE 7.

 Thanks for any help.

Parents
No Data
Reply
  • 28464
    posted

    Hello,

    It really depends on your setup. A good idea would be to start with our samples browser located here

    http://samples.infragistics.com/2008.3/WebFeatureBrowser/Default.aspx

    and go through the source code of each of our splitter examples. For example, this is the simplest example that has resizable panes:

            <ig:WebSplitter runat="server" ID="WebSplitter1" Height="100%">
    <Panes>
    <ig:SplitterPane Size="50%">
    </ig:SplitterPane>
    <ig:SplitterPane Size="50%">
    </ig:SplitterPane>
    </Panes>
    </ig:WebSplitter>
    The only thing that you need is ScriptManager on the page. Do you have it? 
    Do you get any javascript errors on the page? How is your setup different? 

Children