﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebDesktop - WebSplitter - where do I set the width to 10px?</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/WebSplitter---where-do-I-set-the-width-to-10px/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>WebSplitter - where do I set the width to 10px?</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/WebSplitter---where-do-I-set-the-width-to-10px/</link><pubDate>Tue, 21 Feb 2012 21:51:30 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;Please follow the step by step below in order to find the “PaneSettings” in WebDesktop 3 Documentation.&lt;/span&gt;&lt;/p&gt;
&lt;ol style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;&lt;li&gt;Open WebDesktop 3 Documentation (please point your mouse to start &amp;gt; All Programs &amp;gt; Intersoft WebUI Studio 2011 R2 SP1 &amp;gt; WebUI Studio for ASP.NET &amp;gt; WebDesktop 3 &amp;gt; WebDesktop 3 Documentation).&lt;br /&gt;&lt;img src="http://www.intersoftpt.com/Community/Attachments/3103/startmenu.png" /&gt;&lt;/li&gt;&lt;li&gt;After the documentation opened, browse through following path on the Contents tab: Help Viewer Home &amp;gt; WebDesktop &amp;gt; Server-side References &amp;gt; ISNet.WebUI.WebDesktop Assembly &amp;gt; ISNet.WebUI.WebDesktop Namespace &amp;gt; WebPaneSettings Class &amp;gt; WebPaneSettings Class Members.&lt;br /&gt;&lt;img width="512" height="288" src="http://www.intersoftpt.com/Community/Attachments/3103/panesettings.png" /&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;Hope this helps.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>WebSplitter - where do I set the width to 10px?</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/WebSplitter---where-do-I-set-the-width-to-10px/</link><pubDate>Tue, 21 Feb 2012 10:22:38 GMT</pubDate><dc:creator>qafrank1</dc:creator><description>&lt;p&gt;Where can I find the "PaneSettings" properties documented?&lt;/p&gt;</description></item><item><title>WebSplitter - where do I set the width to 10px?</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/WebSplitter---where-do-I-set-the-width-to-10px/</link><pubDate>Tue, 31 Jan 2012 17:49:07 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="font-family: 'segoe ui', 'sans-serif'; color: #1f497d; font-size: 9pt"&gt;I tried to set the Width property of SplitterStyle collection in WebPaneManager with no luck. I will try to look for other alternatives as a solution.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui', 'sans-serif'; color: #1f497d; font-size: 9pt"&gt;&lt;strong&gt;Edited on January 31, 2012 10:43 PM&lt;br /&gt;Reason: Update Solution&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui', 'sans-serif'; color: #1f497d; font-size: 9pt"&gt;I’d like to suggest you to directly access the placeholder element of the splitter and set the width property of the element. OnInitialize client-side event of WebPaneManager is suitable to place the code which set the width of the splitter.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;function WebPaneManager1_OnInitialize(controlId)
{
    var WebPaneManager1 = ISGetObject(controlId);
    var VSplitter = WebPaneManager1.Splitters[1].PlaceholderId;
    var elmVSplitter = document.getElementById(VSplitter);

    elmVSplitter.style.width = "12px";
            
    return true;
}&lt;/pre&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui', 'sans-serif'; color: #1f497d; font-size: 9pt"&gt;I enclosed one simple sample as attachment. Please have the sample evaluated on your and let me know whether it helps or not.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui', 'sans-serif'; color: #1f497d; font-size: 9pt"&gt;&lt;strong&gt;Edited on February 1, 2012 2:29 AM&lt;br /&gt;Reason: Update Alternative Solution&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui', 'sans-serif'; color: #1f497d; font-size: 9pt"&gt;You might want to try to set PaneSpacing property of PaneSettings. PaneSpacing specifies the spacing between each Pane in pixel. It has integer value type and 4 as the default value.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;ISWebDesktop:WebPaneManager ID="WebPaneManager1" runat="server" Height="100%" Width="100%"&amp;gt;
    &amp;lt;RootGroupPane Name="RootGroupPane" Text="Root GroupPane"&amp;gt;
        &amp;lt;Panes&amp;gt;
            &amp;lt;ISWebDesktop:WebPane Height="Custom" HeightValue="15%" Name="Header" Text="Header"&amp;gt;
                ...
            &amp;lt;/ISWebDesktop:WebPane&amp;gt;
            &amp;lt;ISWebDesktop:WebGroupPane GroupType="VerticalTile" Name="GroupContent" Text="Group Content"&amp;gt;
                &amp;lt;Panes&amp;gt;
                    &amp;lt;ISWebDesktop:WebPane Name="Side" Text="Side" Width="Custom" WidthValue="15%" HeightValue="85%"
                        AllowCollapse="Yes"&amp;gt;
                        ...
                    &amp;lt;/ISWebDesktop:WebPane&amp;gt;
                    &amp;lt;ISWebDesktop:WebPane Name="Content" Text="Content"&amp;gt;
                        ...
                    &amp;lt;/ISWebDesktop:WebPane&amp;gt;
                &amp;lt;/Panes&amp;gt;
            &amp;lt;/ISWebDesktop:WebGroupPane&amp;gt;
        &amp;lt;/Panes&amp;gt;
    &amp;lt;/RootGroupPane&amp;gt;
    ...
    &amp;lt;PaneSettings &lt;strong&gt;PaneSpacing="10"&lt;/strong&gt;&amp;gt;
        ...
    &amp;lt;/PaneSettings&amp;gt;
    ...
&amp;lt;/ISWebDesktop:WebPaneManager&amp;gt;&lt;/pre&gt;</description></item><item><title>WebSplitter - where do I set the width to 10px?</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/WebSplitter---where-do-I-set-the-width-to-10px/</link><pubDate>Mon, 30 Jan 2012 12:20:40 GMT</pubDate><dc:creator>qafrank1</dc:creator><description>&lt;p&gt;Where do I set the size when I am using the WebPaneManager?&lt;/p&gt;
&lt;p&gt;There is a splitter between pnNavTree and pnContent that I want to make 8px wide.&lt;/p&gt;
&lt;p&gt;Below is a snippet of my .aspx form:&lt;/p&gt;&lt;pre&gt;     &amp;lt;ISWebDesktop:WebDesktopManager ID="mainDesktop" runat="server" Height="100%" Width="100%" ViewStateStorage="None"&amp;gt;
        &amp;lt;FrameStyle BackColor="WhiteSmoke"&amp;gt;
        &amp;lt;/FrameStyle&amp;gt;
        &amp;lt;Windows&amp;gt;
            &amp;lt;ISWebDesktop:WebDesktopWindow Name="wndMain" ControlBox="No" AllowClose="No" AllowMaximize="No"
                AllowMinimize="No" AllowResize="No" ShowInTaskBar="false" WindowState="Maximized"
                CaptionDisplayMode="Text"&amp;gt;
                &amp;lt;ContentTemplate&amp;gt;
                    &amp;lt;ISWebDesktop:WebPaneManager ID="ctlPaneManager" runat="server" Height="100%" Width="100%"
                        ViewStateStorage="None" SkinID="DefaultPage"&amp;gt;
                        &amp;lt;RootGroupPane Name="RootGroup"&amp;gt;
                            &amp;lt;Panes&amp;gt;
                                &amp;lt;ISWebDesktop:WebPane ContentScrollable="False" Height="Custom" HeightValue="40px"
                                    Name="pnHeader" Text="Application Header"&amp;gt;
                                    &amp;lt;ContentTemplate&amp;gt;
                                        &amp;lt;DT:ApplicationHeader ID="ctlAppHeader" runat="server" /&amp;gt;
                                    &amp;lt;/ContentTemplate&amp;gt;
                                    &amp;lt;ContentPadding Bottom="0px" Top="0px" /&amp;gt;
                                &amp;lt;/ISWebDesktop:WebPane&amp;gt;                           &amp;lt;ISWebDesktop:WebGroupPane GroupType="VerticalTile" Name="pnContentGroup"&amp;gt;
                                    &amp;lt;Panes&amp;gt;
                                        &amp;lt;ISWebDesktop:WebPane Name="pnNavTree" AllowCollapse="Yes" AllowResize="Yes" ContentMode="UseIFrame"
                                            ContentScrollable="False" Text="Navigation Tree" Width="Custom" WidthValue="250px"
                                            Visible="False" ContentURL="~/NewNavigationTree.aspx"&amp;gt;
                                        &amp;lt;/ISWebDesktop:WebPane&amp;gt;
                                        &amp;lt;ISWebDesktop:WebPane ContentMode="UseIFrame" Name="pnContent"&amp;gt;
                                        &amp;lt;/ISWebDesktop:WebPane&amp;gt;
                                    &amp;lt;/Panes&amp;gt;
                                &amp;lt;/ISWebDesktop:WebGroupPane&amp;gt;&lt;/pre&gt;
&lt;p&gt;Thank you.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description></item><item><title>WebSplitter - where do I set the width to 10px?</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/WebSplitter---where-do-I-set-the-width-to-10px/</link><pubDate>Mon, 30 Jan 2012 02:09:06 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt;"&gt;Based on the documentation of WebSplitter, there is no Width property available in the WebSplitter properties collection. However, it has Size property which gets or sets the size of WebSplitter (in pixel). Value type of this property is integer and the default value is 4.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt;"&gt;Hope this helps.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>WebSplitter - where do I set the width to 10px?</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/WebSplitter---where-do-I-set-the-width-to-10px/</link><pubDate>Fri, 27 Jan 2012 13:11:38 GMT</pubDate><dc:creator>qafrank1</dc:creator><description>&lt;p&gt;In the websplitter, I want to change the width to 10px (or some other value); where should this be set in the SkinFile?&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;</description></item></channel></rss>