Skip to content

Commit

Permalink
fix(grid): no property updateCell master (#13287)
Browse files Browse the repository at this point in the history
* fix(grid): updateCell added to GridType #13239

* fix(grid): updateRow added to GridType #13239

* fix(grid): removed updateCell from samples #13287

---------

Co-authored-by: Hristiana Hristova <[email protected]>
Co-authored-by: Hristo <[email protected]>
Co-authored-by: Konstantin Dinev <[email protected]>
  • Loading branch information
4 people authored Aug 28, 2023
1 parent a042600 commit b061766
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1149,10 +1149,12 @@ export interface GridType extends IGridDataBindable {
deselectAllRows(onlyFilterData?: boolean): void;
setUpPaginator(): void;
createFilterDropdown(column: ColumnType, options: OverlaySettings): any;
updateCell(value: any, rowSelector: any, column: string): void;
// Type to RowType
createRow?(index: number, data?: any): RowType;
deleteRow(id: any): any;
deleteRowById(id: any): any;
updateRow(value: any, rowSelector: any): void;
collapseRow(id: any): void;
notifyChanges(repaint?: boolean): void;
resetColumnCollections(): void;
Expand Down

0 comments on commit b061766

Please sign in to comment.