2019-02-12 09:08:37 +01:00
|
|
|
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));
|
|
|
|
}
|
|
|
|
|
2019-03-13 13:53:40 +01:00
|
|
|
onRowUpdated(event) {
|
|
|
|
this.underlyingObject = event.detail;
|
2019-02-12 09:08:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export { AttractRowBase }
|