ngx-deebodata 0.1.5 → 0.1.6
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.
- package/README.md +3 -3
- package/fesm2022/ngx-deebodata.mjs +14 -11
- package/fesm2022/ngx-deebodata.mjs.map +1 -1
- package/package.json +1 -1
- package/types/ngx-deebodata.d.ts +1 -1
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# NgxDeebodata
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Angular data grid with virtual scroll, integrated charts, row grouping, column resizing, toggle column visibility, cell editing, tab accessibility, sorting with priority, and advanced filtering. This package uses only basic @angular packages and rxjs as peer dependencies.
|
|
4
4
|
|
|
5
5
|
# Licensing
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Install this package and use the full functionality when developing locally at **http://localhost:4200/**
|
|
8
8
|
|
|
9
|
-
To deploy to any live url, you need to obtain a deployment license for each developer on the project from https://deebodata.com/data-grid-checkout/angular
|
|
9
|
+
To deploy to any live url, you need to obtain a **deployment license** for each developer on the project from https://deebodata.com/data-grid-checkout/angular
|
|
10
10
|
|
|
11
11
|
## Usage
|
|
12
12
|
|
|
@@ -1664,7 +1664,7 @@ class DataTablePaginator {
|
|
|
1664
1664
|
showSkipToOptions(event) {
|
|
1665
1665
|
if (!this.showSkipTo)
|
|
1666
1666
|
this.showSkipTo = true;
|
|
1667
|
-
if (event &&
|
|
1667
|
+
if (event && !this.listenToWindowSkipTo)
|
|
1668
1668
|
setTimeout(() => { this.listenToWindowSkipTo = true; });
|
|
1669
1669
|
}
|
|
1670
1670
|
closeSkipOpts() {
|
|
@@ -1939,16 +1939,19 @@ class DataCellComponent {
|
|
|
1939
1939
|
nxtCell.focus();
|
|
1940
1940
|
}
|
|
1941
1941
|
else {
|
|
1942
|
-
this.dataTableService.
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
nxtRowCell.
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
skip.
|
|
1942
|
+
const nxtRow = this.dataTableService.shiftKeyDown === 1 ? this.cellElem.nativeElement.parentElement?.parentElement?.nextElementSibling :
|
|
1943
|
+
this.cellElem.nativeElement.parentElement?.parentElement?.previousElementSibling;
|
|
1944
|
+
if (nxtRow) {
|
|
1945
|
+
this.dataTableService.autoScrollOnEdit = true;
|
|
1946
|
+
this.dataTableService.scrollBodyForTabbing(this.dataTableService.shiftKeyDown);
|
|
1947
|
+
const nxtRowCell = document.querySelector("#" + nxtRow.id + " .data-cell:not(.col-header-minimized)");
|
|
1948
|
+
if (nxtRowCell)
|
|
1949
|
+
nxtRowCell.focus();
|
|
1950
|
+
else {
|
|
1951
|
+
const skip = document.getElementById("skipTo");
|
|
1952
|
+
if (skip)
|
|
1953
|
+
skip.focus();
|
|
1954
|
+
}
|
|
1952
1955
|
}
|
|
1953
1956
|
}
|
|
1954
1957
|
}
|