src/table/table-row.class.ts
Represents a table row, which is essentially an array of TableItem.
Array
Properties |
disabled |
Default value : false
|
Defined in src/table/table-row.class.ts:10
|
Whether row is disabled or not. |
import { TableItem } from "./table-item.class";
/**
* Represents a table row, which is essentially an array of TableItem.
*/
export class TableRow extends Array<TableItem> {
/**
* Whether row is disabled or not.
*/
disabled = false;
}