DataSet detail view

This commit is contained in:
2022-12-21 19:30:24 +01:00
parent 0f28e18ed2
commit 83848f05f3
6 changed files with 122 additions and 21 deletions

View File

@@ -15,8 +15,9 @@ export class DataSet extends Base {
super();
Object.assign(this, data);
}
override deserialize(input: any): this {
override deserialize(input: any): this {
Object.assign(this, Object.assign(this, super.deserialize(input)));
if (this.dataRows) { this.dataRows = this.dataRows.map(x => new DataRow().deserialize(x)); }
return this;
}
override serialize() {