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 CHANGED
@@ -1,12 +1,12 @@
1
1
  # NgxDeebodata
2
2
 
3
- Commercial data grid with virtual scroll, integrated charts, row grouping, column resizing, toggle column visibility, cell editing, tab accessibility, sorting with priority, and advanced filtering.
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
- **Commercial license** - However, you can install this module and test the full functionality when developing locally at **http://localhost:4200/**
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 && event.type === "click" && !this.listenToWindowSkipTo)
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.autoScrollOnEdit = true;
1943
- this.dataTableService.scrollBodyForTabbing(this.dataTableService.shiftKeyDown);
1944
- const baseRow = parseInt(this.rowId.replace(/^dataTableRow/, ""));
1945
- const nxtRowCell = document.querySelector("#dataTableRow" + (baseRow + (1 * this.dataTableService.shiftKeyDown)) + " .data-cell:not(.col-header-minimized)");
1946
- if (nxtRowCell)
1947
- nxtRowCell.focus();
1948
- else {
1949
- const skip = document.getElementById("skipTo");
1950
- if (skip)
1951
- skip.focus();
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
  }