<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: splitter container: fixed size in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitter-container-fixed-size/m-p/909181#M56701</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anand,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your drawing of my screen was quite good &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;But it seems you are correct when it comes to the - non existent - solution to my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for the code, it did in fact make the sash fixed but only to the user. When the window resizes the sash position will still change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nevertheless thanks to both of you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will leave the thread unsolved a little longer - maybe someone finds a solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Patrick Baer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Apr 2005 13:53:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-04-28T13:53:41Z</dc:date>
    <item>
      <title>splitter container: fixed size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitter-container-fixed-size/m-p/909178#M56698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a dynpro with a docking container on the top level. Embedded in this are some nested splitter containers (easy splitter containers at the moment). Generally I like the fact that the splitters are resizing automatically when I change the screen size but now I want one of the two containers of a (easy) splitter container to stay fixed in size. Reason is that I embedded a cl_gui_toolbar which is actually fixed in size and looks quite odd when there's a lot of unused space around...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looking forward to any suggestions !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Patrick Baer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2005 12:40:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitter-container-fixed-size/m-p/909178#M56698</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-04-28T12:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: splitter container: fixed size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitter-container-fixed-size/m-p/909179#M56699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Patrick,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not sure I understand you correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;-----------------------------------------
|					|	
|       docking container		|
|---------------------------------------|
|		|			|
|  toolbar	|			|
|---------------|			|
|	    ^	|			|  &amp;lt;----- screen	
|	    |	|			|
|           |   |			|
|	    |--&amp;gt;|			|
|	    |	|			|
------------|----------------------------
	    |
        Easy Splitters&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the above is a correct visualization of the situation, then you will not be able to restrict just the TOOLBAR area from resizing. If the rest of the screen resizes and just one area doesn't, it would certainly look bad. Though in your case it may seem desirable. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should probably think about subscreens and resizing attributes...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand Mandalika.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2005 13:21:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitter-container-fixed-size/m-p/909179#M56699</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-04-28T13:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: splitter container: fixed size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitter-container-fixed-size/m-p/909180#M56700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried working with the following methods?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

   call method:
                splitter-&amp;gt;set_row_height
                  exporting id             = 1
                            height         = '14',

                splitter-&amp;gt;set_row_sash
                  exporting id             = 1
                            type           = 0
                            value          = 0.


*** or

   call method:
                splitter-&amp;gt;set_column_width
                  exporting id             = 1
                            width         = '14',

                splitter-&amp;gt;set_column_sash
                  exporting id             = 1
                            type           = 0
                            value          = 0.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2005 13:29:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitter-container-fixed-size/m-p/909180#M56700</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-04-28T13:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: splitter container: fixed size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitter-container-fixed-size/m-p/909181#M56701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anand,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your drawing of my screen was quite good &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;But it seems you are correct when it comes to the - non existent - solution to my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for the code, it did in fact make the sash fixed but only to the user. When the window resizes the sash position will still change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nevertheless thanks to both of you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will leave the thread unsolved a little longer - maybe someone finds a solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Patrick Baer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2005 13:53:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitter-container-fixed-size/m-p/909181#M56701</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-04-28T13:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: splitter container: fixed size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitter-container-fixed-size/m-p/13928337#M2037751</link>
      <description>&lt;P&gt;it works&lt;/P&gt;</description>
      <pubDate>Tue, 05 Nov 2024 05:54:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitter-container-fixed-size/m-p/13928337#M2037751</guid>
      <dc:creator>Prajwal4</dc:creator>
      <dc:date>2024-11-05T05:54:18Z</dc:date>
    </item>
  </channel>
</rss>

