DataSet detail view
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user