15 lines
371 B
JavaScript
15 lines
371 B
JavaScript
|
let RowBase = pillar.vuecomponents.table.rows.RowBase;
|
||
|
|
||
|
class AttractRowBase extends RowBase {
|
||
|
constructor(underlyingObject) {
|
||
|
super(underlyingObject);
|
||
|
pillar.events.Nodes.onUpdated(this.getId(), this.onRowUpdated.bind(this));
|
||
|
}
|
||
|
|
||
|
onRowUpdated(event, updatedObj) {
|
||
|
this.underlyingObject = updatedObj;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export { AttractRowBase }
|