src/modules/table/entities/column-cell-clicked-output.intf.ts
Definition of the output value of StarkTableColumn cellClicked Output
Properties |
columnName |
columnName:
|
Type : string
|
The column name that the cell belongs to |
row |
row:
|
Type : object
|
The row object that contains the cell that was clicked |
value |
value:
|
Type : any
|
The value of the cell that was clicked |
export interface StarkColumnCellClickedOutput {
/**
* The value of the cell that was clicked
*/
value: any;
/**
* The column name that the cell belongs to
*/
columnName: string;
/**
* The row object that contains the cell that was clicked
*/
row: object;
}