File

src/table/table-row.class.ts

Description

Represents a table row, which is essentially an array of TableItem.

Extends

Array

Index

Properties

Properties

disabled
Default value : false

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;
}

results matching ""

    No results matching ""