Sure. The problem with your solution is that you are still showing a pixel height in your css for splitter-container of 300px. I need it to fill the available space via splitter-container of 100%. I don't know the pixel height of the user's browser. See the two screen caps below. The first is when the container is set to 100% and sfSplitter to 100%. The second is your solution, which doesn't work for me because you still used a fixed pixel height in the container. I've posted the non-working code below that.


non working code see image 1
@page "/splitter-test"
@using Syncfusion.Blazor.Layouts
@using Syncfusion.Blazor.Navigations
@using System.ComponentModel
@using SRTrader.Client.Services
@using System.Collections.ObjectModel
@using System.Collections.Specialized
@inject NavigationManager NavigationManager
<div id="splittercontainer">
<SfSplitter Height="100%" Orientation="Syncfusion.Blazor.Layouts.Orientation.Vertical">
<SplitterPanes>
<SplitterPane Size="70%" Min="300px">
<ContentTemplate>
Some content
</ContentTemplate>
</SplitterPane>
<SplitterPane Size="25%" Min="300px">
<ContentTemplate>
Some other content
</ContentTemplate>
</SplitterPane>
<SplitterPane Size="3%" Min="35px">
<ContentTemplate>
Some expandable footer
</ContentTemplate>
</SplitterPane>
</SplitterPanes>
</SfSplitter>
</div>
<style>
#splittercontainer {
height: 100%;
}
</style>