Skip to content

Commit

Permalink
fix: updateColumns() should be public use with column hidden
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Dec 27, 2023
1 parent ee8f72f commit 0dc5f6d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/slick.grid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3516,6 3516,7 @@ export class SlickGrid<TData = any, C extends Column<TData> = Column<TData>, O e
this.updateColumnsInternal();
}

/** Update columns for when a hidden property has changed but the column list itself has not changed. */
updateColumns() {
this.trigger(this.onBeforeUpdateColumns, { columns: this.columns, grid: this });
this.updateColumnsInternal();
Expand Down

0 comments on commit 0dc5f6d

Please sign in to comment.