<?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>Question Re: UI5 Add/remove/change responsive splitter split pane in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/ui5-add-remove-change-responsive-splitter-split-pane/qaa-p/578428#M130899</link>
    <description>&lt;P&gt;You can use SplitterLayoutData &lt;/P&gt;&lt;P&gt;Work since 1.60 SAPUI5 version&lt;/P&gt;&lt;P&gt;&lt;A href="http://jsfiddle.net/y9rffmm5/3/" target="test_blank"&gt;http://jsfiddle.net/y9rffmm5/3/&lt;/A&gt;&lt;/P&gt;&lt;P&gt; Example:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;        &amp;lt;l:ResponsiveSplitter defaultPane="default" width="100%" height="100%"&amp;gt;
            &amp;lt;l:PaneContainer&amp;gt;
                &amp;lt;l:SplitPane id="default" height="100%"&amp;gt;
                  &amp;lt;l:layoutData&amp;gt;&amp;lt;l:SplitterLayoutData resizable="true" size="25%"/&amp;gt;&amp;lt;/l:layoutData&amp;gt; 
                  &amp;lt;Panel headerText="header"&amp;gt;
                    &amp;lt;/Panel&amp;gt;

                     ......
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 30 Jan 2019 09:53:11 GMT</pubDate>
    <dc:creator>former_member400953</dc:creator>
    <dc:date>2019-01-30T09:53:11Z</dc:date>
    <item>
      <title>UI5 Add/remove/change responsive splitter split pane</title>
      <link>https://community.sap.com/t5/technology-q-a/ui5-add-remove-change-responsive-splitter-split-pane/qaq-p/578423</link>
      <description>&lt;P&gt;I am trying to modify the split panes in my view. My view looks like this: &lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;    &amp;lt;mvc:View 
        controllerName="svm.controller.Controller" xmlns:l="sap.ui.layout" 
        xmlns:mvc="sap.ui.core.mvc" 
        xmlns:core="sap.ui.core"
        xmlns="sap.m"&amp;gt;
        &amp;lt;l:ResponsiveSplitter defaultPane="default" width="100%" height="100%"&amp;gt;
            &amp;lt;l:PaneContainer&amp;gt;
                &amp;lt;l:SplitPane id="default" height="100%"&amp;gt;
                    &amp;lt;Panel headerText="header"&amp;gt;
                    &amp;lt;/Panel&amp;gt;
                &amp;lt;/l:SplitPane&amp;gt;
                &amp;lt;l:SplitPane height="100%"&amp;gt;
                    &amp;lt;Panel headerText="header2"&amp;gt;
                    &amp;lt;/Panel&amp;gt;
                &amp;lt;/l:SplitPane&amp;gt;
            &amp;lt;/l:PaneContainer&amp;gt;
        &amp;lt;l:ResponsiveSplitter&amp;gt;
    &amp;lt;/mvc:View&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;The first thing I want to do is change how wide the panes start. It is easy to modify the size of the panel but the pane does not change to be the same width as its panel. Setting the pane to `width="20%"` and `width="80%"` does nothing to move where the splitters start. &lt;/P&gt;
  &lt;P&gt;I also want one of my panes to not be there when the application starts and to basically be added and removed on a toggle, complete with it's panel and everything inside. &lt;/P&gt;
  &lt;P&gt;Is there a way to do these things in javascript or preferably in xml?&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2018 22:47:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/ui5-add-remove-change-responsive-splitter-split-pane/qaq-p/578423</guid>
      <dc:creator>former_member545597</dc:creator>
      <dc:date>2018-01-18T22:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: UI5 Add/remove/change responsive splitter split pane</title>
      <link>https://community.sap.com/t5/technology-q-a/ui5-add-remove-change-responsive-splitter-split-pane/qaa-p/578424#M130895</link>
      <description>&lt;P&gt;Hii try with below code.....give a width for SplitPane it will work&lt;/P&gt;
  &lt;P&gt;&amp;lt;l:SplitPane requiredParentWidth="400" id="default"&amp;gt;&lt;/P&gt;
  &lt;P&gt; &amp;lt;m:Panel headerText="Minimum parent width 400" height="100%"&amp;gt;&lt;/P&gt;
  &lt;P&gt; &amp;lt;m:List headerText="Products" items="{ path: '/ProductCollection' }"&amp;gt; &lt;/P&gt;
  &lt;P&gt;&amp;lt;m:StandardListItem title="{Name}" counter="{Quantity}"/&amp;gt; &amp;lt;/m:List&amp;gt; &amp;lt;/m:Panel&amp;gt; &lt;/P&gt;
  &lt;P&gt;&amp;lt;/l:SplitPane&amp;gt;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2018 04:17:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/ui5-add-remove-change-responsive-splitter-split-pane/qaa-p/578424#M130895</guid>
      <dc:creator>former_member17337</dc:creator>
      <dc:date>2018-01-19T04:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: UI5 Add/remove/change responsive splitter split pane</title>
      <link>https://community.sap.com/t5/technology-q-a/ui5-add-remove-change-responsive-splitter-split-pane/qaa-p/578425#M130896</link>
      <description>&lt;P&gt;This did not work. I gave requiredParentWidth to all my split panes and nothing changed, using % values did not work either&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2018 22:47:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/ui5-add-remove-change-responsive-splitter-split-pane/qaa-p/578425#M130896</guid>
      <dc:creator>former_member545597</dc:creator>
      <dc:date>2018-01-19T22:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: UI5 Add/remove/change responsive splitter split pane</title>
      <link>https://community.sap.com/t5/technology-q-a/ui5-add-remove-change-responsive-splitter-split-pane/qaa-p/578426#M130897</link>
      <description>&lt;P&gt;Go through this link &lt;A href="https://openui5.hana.ondemand.com/1.48.3/explored.html#/sample/sap.ui.layout.sample.ResponsiveSplitter/preview" target="test_blank"&gt;https://openui5.hana.ondemand.com/1.48.3/explored.html#/sample/sap.ui.layout.sample.ResponsiveSplitter/preview&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2018 11:13:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/ui5-add-remove-change-responsive-splitter-split-pane/qaa-p/578426#M130897</guid>
      <dc:creator>former_member17337</dc:creator>
      <dc:date>2018-01-23T11:13:03Z</dc:date>
    </item>
    <item>
      <title>Re: UI5 Add/remove/change responsive splitter split pane</title>
      <link>https://community.sap.com/t5/technology-q-a/ui5-add-remove-change-responsive-splitter-split-pane/qaa-p/578427#M130898</link>
      <description>&lt;P&gt;It seems those split panes are all the same with, it also seems like the only function of the requiredParentWidth is to display the split pane if there is enough screen width.&lt;/P&gt;
  &lt;P&gt;I am looking for a way to change the width programmatically.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2018 19:34:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/ui5-add-remove-change-responsive-splitter-split-pane/qaa-p/578427#M130898</guid>
      <dc:creator>former_member545597</dc:creator>
      <dc:date>2018-01-25T19:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: UI5 Add/remove/change responsive splitter split pane</title>
      <link>https://community.sap.com/t5/technology-q-a/ui5-add-remove-change-responsive-splitter-split-pane/qaa-p/578428#M130899</link>
      <description>&lt;P&gt;You can use SplitterLayoutData &lt;/P&gt;&lt;P&gt;Work since 1.60 SAPUI5 version&lt;/P&gt;&lt;P&gt;&lt;A href="http://jsfiddle.net/y9rffmm5/3/" target="test_blank"&gt;http://jsfiddle.net/y9rffmm5/3/&lt;/A&gt;&lt;/P&gt;&lt;P&gt; Example:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;        &amp;lt;l:ResponsiveSplitter defaultPane="default" width="100%" height="100%"&amp;gt;
            &amp;lt;l:PaneContainer&amp;gt;
                &amp;lt;l:SplitPane id="default" height="100%"&amp;gt;
                  &amp;lt;l:layoutData&amp;gt;&amp;lt;l:SplitterLayoutData resizable="true" size="25%"/&amp;gt;&amp;lt;/l:layoutData&amp;gt; 
                  &amp;lt;Panel headerText="header"&amp;gt;
                    &amp;lt;/Panel&amp;gt;

                     ......
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 30 Jan 2019 09:53:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/ui5-add-remove-change-responsive-splitter-split-pane/qaa-p/578428#M130899</guid>
      <dc:creator>former_member400953</dc:creator>
      <dc:date>2019-01-30T09:53:11Z</dc:date>
    </item>
  </channel>
</rss>

