Angular PrimeNG Splitter Events
Last Updated :
28 Apr, 2025
Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see Angular PrimeNG Splitter Events.
The Splitter Component allows a user to split two-element using a splitter & utilized it separately and resize panels.
Angular PrimeNG Splitter Events:
- onResizeStart: It is a callback that is fired when resizing starts.
- onResizeEnd: It is a callback that is fired when resizing ends.
Syntax:
<p-splitter (event)=function()>
...
</p-splitter>
Creating Angular application & module installation:
Step 1: Create an Angular application using the following command.
ng new appname
Step 2: After creating your project folder i.e. appname, move to it using the following command.
cd appname
Step 3: Install PrimeNG in your given directory.
npm install primeng --save
npm install primeicons --save
Project Structure: It will look like the following:

Example 1: This example describes the basic usage of the Angular PrimeNG Splitter Events by implementing the onResizeStart event.
HTML
<div>
<h2 style="color:green">
GeeksforGeeks
</h2>
<h3>
Angular PrimeNG Splitter Events
</h3>
<p-splitter [panelSizes]="[60, 40]"
[minSizes]="[20, 40]"
(onResizeStart)=onResizeStart()>
<ng-template pTemplate>
<div class="p-col p-ai-center
p-jc-center">
<img alt="gfg"
src=
"https://media.geeksforgeeks.org/wp-content/uploads/20220807104303/dsaselfpacedcourseoverviewimage-300x289.png" />
</div>
</ng-template>
<ng-template pTemplate>
<div class="p-col p-ai-center
p-jc-center">
<img alt="gfg"
src=
"https://media.geeksforgeeks.org/wp-content/uploads/20220807104255/completeinterviewpreparationcourseoverviewimage-300x289.png" />
</div>
</ng-template>
</p-splitter>
</div>
JavaScript
import { Component } from "@angular/core";
@Component({
selector: "app-root",
templateUrl: "./app.component.html"
})
export class AppComponent {
onResizeStart() {
alert("Resize started")
}
}
JavaScript
import { NgModule } from "@angular/core";
import { BrowserModule }
from "@angular/platform-browser";
import { BrowserAnimationsModule }
from "@angular/platform-browser/animations";
import { AppComponent } from "./app.component";
import { SplitterModule } from "primeng/splitter";
@NgModule({
imports: [
BrowserModule,
BrowserAnimationsModule,
SplitterModule,
],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule { }
Output:

Example 2: This is another example that describes the use of the Angular PrimeNG Splitter Events by implementing the onResizeEnd event.
HTML
<div>
<h2 style="color:green">
GeeksforGeeks
</h2>
<h3>Angular PrimeNG Splitter Events</h3>
<p-splitter [panelSizes]="[60, 40]"
[minSizes]="[20, 40]"
(onResizeEnd)=onResizeEnd()>
<ng-template pTemplate>
<div class="p-col p-ai-center p-jc-center">
<img alt="gfg" src=
"https://media.geeksforgeeks.org/wp-content/uploads/20220807104303/dsaselfpacedcourseoverviewimage-300x289.png" />
</div>
</ng-template>
<ng-template pTemplate>
<div class="p-col p-ai-center p-jc-center">
<img alt="gfg" src=
"https://media.geeksforgeeks.org/wp-content/uploads/20220807104255/completeinterviewpreparationcourseoverviewimage-300x289.png" />
</div>
</ng-template>
</p-splitter>
</div>
JavaScript
import { Component } from "@angular/core";
@Component({
selector: "app-root",
templateUrl: "./app.component.html"
})
export class AppComponent {
onResizeEnd() {
alert("Resize Ended")
}
}
JavaScript
import { NgModule } from "@angular/core";
import { BrowserModule }
from "@angular/platform-browser";
import { BrowserAnimationsModule }
from "@angular/platform-browser/animations";
import { AppComponent } from "./app.component";
import { SplitterModule } from "primeng/splitter";
@NgModule({
imports: [
BrowserModule,
BrowserAnimationsModule,
SplitterModule,
],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule { }
Output:
Reference: https://primefaces.org/primeng/splitter
Similar Reads
Angular PrimeNG SplitButton Events Angular PrimeNG is a framework used with angular to create components with great styling this framework is very easy to use and is used to make responsive websites. In this article, we will see how to use SplitButton Events in angular primeNG. The SplitButton component is used to make a button a dro
3 min read
Angular PrimeNG Sidebar Events Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will learn about Angular PrimeNG Sidebar Events. The Sidebar Component is used t
3 min read
Angular PrimeNG Steps Events Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see the Steps Events in Angular PrimeNG. The Steps Component guides users t
3 min read
Angular PrimeNG Splitter Component Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know how to use the Splitter component in Angular PrimeNG. We will also lea
4 min read
Angular PrimeNG Tree Events Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. It provides a lot of templates, components, theme designs, an extensive icon library, and much more.
5 min read
Angular PrimeNG Form Slider Events Angular PrimeNG is a collection of Interactive UI components for Angular applications. Developers can use these components to make beautiful and responsive web interfaces in no time as most of the components have all the necessary functions implemented. In this article, we will be discussing Angular
3 min read
Angular PrimeNG Splitter Nested Panels Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know how to use the Splitter Nested Panels in Angular PrimeNG. We will also
4 min read
Angular PrimeNG Splitter Layout Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see how to use the Splitter Layout in Angular PrimeNG. The Splitter Compone
3 min read
Angular PrimeNG TreeTable Events Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. It provides a lot of templates, components, theme design, an extensive icon library, and much more.
7 min read
Angular PrimeNG Splitter Horizontal Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know how to use the Splitter Horizontal in Angular PrimeNG. We will also le
3 min read