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
615
Two splitters between Three Panes
posted

Hi,

Could you send a piece of code of having three panes and two vertical splitters between them...

Regards,

Wishnu

 

Parents
  • 28407
    posted

    HI,

     Drop a WebSpitter onto the form - click the smart tag - add pane. This will give you two vertical splitters

    and three panes.

    Here is my code:

    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

    <%@ Register assembly="Infragistics2.Web.v8.3, Version=8.3.20083.1009, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.Web.UI.LayoutControls" tagprefix="ig" %>

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title>Untitled Page</title>
    </head>
    <body>
        <form id="form1" runat="server">
            <asp:ScriptManager ID="ScriptManager1" runat="server" />
            <div>
                <ig:WebSplitter ID="WebSplitter1" runat="server" Height="200px" Width="300px">
                    <panes>
                        <ig:SplitterPane runat="server">
                        </ig:SplitterPane>
                        <ig:SplitterPane runat="server">
                        </ig:SplitterPane>
                        <ig:SplitterPane runat="server">
                        </ig:SplitterPane>
                    </panes>
                </ig:WebSplitter>
            </div>
        </form>
    </body>
    </html>

Reply Children