Hello,
I have a three panel display (left-middle-right) created using the ‘smart-splitter’ component
<smart-splitter style="height: 100%; width: 100%">
<smart-splitter-item [size]="'580px'" [collapsible]="true" [locked]="true">
<app-task-list-selection2>
</app-task-list-selection2>
</smart-splitter-item>
<smart-splitter-bar class="smart-hidden"></smart-splitter-bar>
<smart-splitter-item >
<!--
<app-tasks-display>
</app-tasks-display>
-->
</smart-splitter-item>
<smart-splitter-item [size]="'25%'" [collapsible]="true" >
</smart-splitter-item>
</smart-splitter>
I am using the 'smart-splitter-bar' to hide the vertical splitter between the left and middle panels.
I've noticed that with this layout if I move the right most splitter (between the middle and right panels) then it will
change the vertical height of the left panel.
If I comment out the 'smart-splitter-bar' tag then this left pane vertical sizing problem does not occur