@nettyapps/ntybase 21.1.31 → 21.1.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, Injectable, inject, NgModule, signal, input, computed, effect, output, linkedSignal, ViewChild, model, Input, InjectionToken, Optional, Inject } from '@angular/core';
|
|
2
|
+
import { Component, Injectable, inject, NgModule, signal, input, computed, effect, output, afterRenderEffect, linkedSignal, ViewChild, model, Input, InjectionToken, Optional, Inject } from '@angular/core';
|
|
3
3
|
import * as i1$3 from '@angular/common/http';
|
|
4
4
|
import { HttpErrorResponse, HttpResponse, HTTP_INTERCEPTORS, HttpClient, HttpHeaders } from '@angular/common/http';
|
|
5
5
|
import { of, throwError, Subject, lastValueFrom, map, catchError as catchError$1, finalize, take as take$1, takeUntil } from 'rxjs';
|
|
@@ -1386,6 +1386,16 @@ class NettyAgGridBase extends NettyAppsBase {
|
|
|
1386
1386
|
// this.commonService.clearOutlet();
|
|
1387
1387
|
}
|
|
1388
1388
|
});
|
|
1389
|
+
afterRenderEffect(() => {
|
|
1390
|
+
let x = this.agGridSelectionMode();
|
|
1391
|
+
if (this.gridOptions) {
|
|
1392
|
+
this.gridOptions.rowSelection = {
|
|
1393
|
+
mode: this._agGridSelectionMode(), checkboxes: true, headerCheckbox: true,
|
|
1394
|
+
selectAll: 'filtered', hideDisabledCheckboxes: true, suppressRowClickSelection: false,
|
|
1395
|
+
enableCellChangeFlash: true,
|
|
1396
|
+
};
|
|
1397
|
+
}
|
|
1398
|
+
});
|
|
1389
1399
|
}
|
|
1390
1400
|
// ***************************************************************
|
|
1391
1401
|
// *** METHODS For optional overide ***
|