Hi,
Could you send a piece of code of having three panes and two vertical splitters between them...
Regards,
Wishnu
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>
Thanks for your reply...
I like to know that the version of Infragistics you have mentioned as 1009 is correct? Whats the version number of Original version?
HI ,
For NetAdvantage 2008 Volume 3 - build 1009 is the release build.
I have two questions ...
[1] How to display two splitters for two splitterpanes...?
[2] How to dynamically add websplitter ?