The Row Based Edit plugin allows you to edit either a single or multiple specific rows at a time, while disabling the rest
diff --git a/src/app/examples/grid-base-row-editing.component.ts b/src/app/examples/grid-base-row-editing.component.ts
index 5be2e987..01ecc595 100644
--- a/src/app/examples/grid-base-row-editing.component.ts
+++ b/src/app/examples/grid-base-row-editing.component.ts
@@ -23,6 +23,7 @@ export class GridBaseRowEditingComponent implements OnInit {
fetchResult = '';
statusClass = 'alert alert-light';
statusStyle = 'display: none';
+ hideSubTitle = false;
constructor(private translate: TranslateService) {
// always start with English for Cypress E2E tests to be consistent
diff --git a/src/app/examples/grid-basic.component.html b/src/app/examples/grid-basic.component.html
index 55bd5343..922d3326 100644
--- a/src/app/examples/grid-basic.component.html
+++ b/src/app/examples/grid-basic.component.html
@@ -10,8 +10,16 @@
You can create a Custom Pagination by passing an Angular Custom Component and it must
implements BasePaginationComponent. Any of the pagination controls could be moved anywhere on the page (for
example we purposely moved the page size away from the rest of the pagination elements).
diff --git a/src/app/examples/grid-custom-pagination.component.ts b/src/app/examples/grid-custom-pagination.component.ts
index 19e85298..9583161e 100644
--- a/src/app/examples/grid-custom-pagination.component.ts
+++ b/src/app/examples/grid-custom-pagination.component.ts
@@ -31,6 +31,7 @@ export class GridCustomPaginationComponent implements OnInit {
dataset: any[] = [];
paginationPosition: 'bottom' | 'top' = 'top';
angularGrid!: AngularGridInstance;
+ hideSubTitle = false;
constructor(protected readonly angularUtilService: AngularUtilService) {}
diff --git a/src/app/examples/grid-custom-tooltip.component.html b/src/app/examples/grid-custom-tooltip.component.html
index 197d6d50..2e43b13a 100644
--- a/src/app/examples/grid-custom-tooltip.component.html
+++ b/src/app/examples/grid-custom-tooltip.component.html
@@ -10,8 +10,16 @@