syncfusion-blazor-splitter — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited syncfusion-blazor-splitter (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
The Syncfusion Blazor Splitter component is a layout-based container that enables you to split a container area into resizable and collapsible panes. Use this skill when you need to create complex layouts with multiple content areas that users can adjust.
Use this skill when you need to:
The Splitter divides container space into independent panes using flexible layout:
📄 Read: references/getting-started.md
📄 Read: references/split-panes.md
📄 Read: references/pane-configuration.md
📄 Read: references/events-and-interactions.md
📄 Read: references/resizing-and-expand-collapse.md
📄 Read: references/styling-and-theming.md
📄 Read: references/state-management.md
📄 Read: references/advanced-scenarios.md
📄 Read: references/api-reference.md
@using Syncfusion.Blazor.Layouts
<SfSplitter Height="240px" Width="100%">
<SplitterPanes>
<SplitterPane Size="300px">
<ContentTemplate>
<div style="padding: 10px;">
<h3>Left Pane</h3>
<p>Content here</p>
</div>
</ContentTemplate>
</SplitterPane>
<SplitterPane>
<ContentTemplate>
<div style="padding: 10px;">
<h3>Right Pane</h3>
<p>Content here</p>
</div>
</ContentTemplate>
</SplitterPane>
</SplitterPanes>
</SfSplitter>@using Syncfusion.Blazor.Layouts
<SfSplitter Height="300px" Width="100%" Orientation="Orientation.Vertical">
<SplitterPanes>
<SplitterPane Size="100px" Collapsible="true">
<ContentTemplate>
<div style="padding: 10px;">Top Pane</div>
</ContentTemplate>
</SplitterPane>
<SplitterPane Collapsible="true">
<ContentTemplate>
<div style="padding: 10px;">Bottom Pane</div>
</ContentTemplate>
</SplitterPane>
</SplitterPanes>
</SfSplitter><SfSplitter Height="400px" Width="100%">
<SplitterPanes>
<SplitterPane Size="20%" Min="150px" Collapsible="true">
<ContentTemplate><div>Sidebar</div></ContentTemplate>
</SplitterPane>
<SplitterPane Size="60%" Min="300px">
<ContentTemplate><div>Main Content</div></ContentTemplate>
</SplitterPane>
<SplitterPane Size="20%" Min="150px" Collapsible="true">
<ContentTemplate><div>Details Panel</div></ContentTemplate>
</SplitterPane>
</SplitterPanes>
</SfSplitter>When to use: Dashboard layouts, IDE-style interfaces, content management systems.
<SfSplitter Height="400px" Orientation="Orientation.Vertical">
<SplitterPanes>
<SplitterPane Size="60%">
<SfSplitter Height="100%">
<SplitterPanes>
<SplitterPane Size="30%"><ContentTemplate>HTML</ContentTemplate></SplitterPane>
<SplitterPane Size="30%"><ContentTemplate>CSS</ContentTemplate></SplitterPane>
<SplitterPane Size="40%"><ContentTemplate>JS</ContentTemplate></SplitterPane>
</SplitterPanes>
</SfSplitter>
</SplitterPane>
<SplitterPane Size="40%"><ContentTemplate>Preview</ContentTemplate></SplitterPane>
</SplitterPanes>
</SfSplitter>When to use: Code editors, preview panes, complex dashboard layouts.
<SfSplitter Height="300px" Width="100%">
<SplitterPanes>
<SplitterPane Size="250px" Min="50px" Collapsible="true" @bind-Collapsed="@sidebarCollapsed">
<ContentTemplate><div>Navigation</div></ContentTemplate>
</SplitterPane>
<SplitterPane>
<ContentTemplate><div>Main Area</div></ContentTemplate>
</SplitterPane>
</SplitterPanes>
</SfSplitter>
@code {
private bool sidebarCollapsed = false;
}When to use: Applications needing dynamic sidebar toggles synchronized with UI state.
| Property | Type | Description | Default |
|---|---|---|---|
Height | string | Container height | Required |
Width | string | Container width | 100% |
Orientation | Orientation | Horizontal or Vertical | Horizontal |
SeparatorSize | int | Separator thickness in pixels | 1 |
EnablePersistence | bool | Save state to localStorage | false |
Size | string | Pane width/height (px or %) | Auto |
Min | string | Minimum pane size | 0 |
Max | string | Maximum pane size | Unlimited |
Resizable | bool | Allow pane resizing | true |
Collapsible | bool | Show collapse/expand buttons | false |
Visible | bool | Show/hide pane | true |
Collapsed | bool | Initial collapsed state | false |
Next Steps:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.