@siberiaweb/components
Version:
27 lines (26 loc) • 558 B
JavaScript
/**
* Событие выбора строки.
*
* @template TRecord Тип записи.
*/
export default class SelectRowEvent extends Event {
/**
* Конструктор.
*
* @param row Строка.
*/
constructor(row) {
super(SelectRowEvent.EVENT_NAME);
this.row = row;
}
/**
* Получение строки.
*/
getRow() {
return this.row;
}
}
/**
* Наименование события.
*/
SelectRowEvent.EVENT_NAME = "GridSelectRow";