cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

I am trying to modify the split panes in my view. My view looks like this:

    <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">
        <l:ResponsiveSplitter defaultPane="default" width="100%" height="100%">
            <l:PaneContainer>
                <l:SplitPane id="default" height="100%">
                    <Panel headerText="header">
                    </Panel>
                </l:SplitPane>
                <l:SplitPane height="100%">
                    <Panel headerText="header2">
                    </Panel>
                </l:SplitPane>
            </l:PaneContainer>
        <l:ResponsiveSplitter>
    </mvc:View>

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.

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.

Is there a way to do these things in javascript or preferably in xml?

0 Likes
View Entire Topic
0 Likes

You can use SplitterLayoutData

Work since 1.60 SAPUI5 version

http://jsfiddle.net/y9rffmm5/3/

Example:

        <l:ResponsiveSplitter defaultPane="default" width="100%" height="100%">
            <l:PaneContainer>
                <l:SplitPane id="default" height="100%">
                  <l:layoutData><l:SplitterLayoutData resizable="true" size="25%"/></l:layoutData> 
                  <Panel headerText="header">
                    </Panel>

                     ......