This repository was archived by the owner on Jun 1, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
src/app/modules/angular-slickgrid/models Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11import { Editor } from './editor.interface' ;
22import { FieldType } from './fieldType' ;
33import { Formatter } from './formatter.interface' ;
4- import { OnCellClickArgs } from './onCellClickArgs .interface' ;
4+ import { OnEventArgs } from './onEventArgs .interface' ;
55import { Sorter } from './sorter.interface' ;
66
77export interface Column {
@@ -28,7 +28,8 @@ export interface Column {
2828 maxWidth ?: number ;
2929 minWidth ?: number ;
3030 name ?: string ;
31- onCellClick ?: ( args : OnCellClickArgs ) => void ;
31+ onCellChange ?: ( args : OnEventArgs ) => void ;
32+ onCellClick ?: ( args : OnEventArgs ) => void ;
3233 previousWidth ?: number ;
3334 resizable ?: boolean ;
3435 rerenderOnResize ?: boolean ;
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export { HtmlElementPosition } from './htmlElementPosition.interface';
2525export { KeyCode } from './keyCode.enum' ;
2626export { GridOption } from './gridOption.interface' ;
2727export { OdataOption } from './odataOption.interface' ;
28- export { OnCellClickArgs } from './onCellClickArgs .interface' ;
28+ export { OnEventArgs } from './onEventArgs .interface' ;
2929export { OperatorType } from './operatorType' ;
3030export { Pagination } from './pagination.interface' ;
3131export { PaginationChangedArgs } from './paginationChangedArgs.interface' ;
You can’t perform that action at this time.
0 commit comments