Skip to content

Commit

Permalink
Make updateRowCount public as it is used in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
volkanceylan committed Aug 11, 2024
1 parent 4a74707 commit bd4721e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1151,7 +1151,7 @@ export declare class Grid<TItem = any> implements EditorHost {
pageNum: number;
totalPages: number;
}): void;
private updateRowCount;
updateRowCount(): void;
/**
* @param viewportTop optional viewport top
* @param viewportLeft optional viewport left
Expand Down
2 changes: 1 addition & 1 deletion src/grid/grid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2199,7 +2199,7 @@ export class Grid<TItem = any> implements EditorHost {
this._pagingIsLastPage = (pagingInfo.pageNum == pagingInfo.totalPages - 1);
}

private updateRowCount(): void {
updateRowCount(): void {
if (!this._initialized) {
return;
}
Expand Down

0 comments on commit bd4721e

Please sign in to comment.