|
@@ -101,6 +101,12 @@ export class Scope {
|
|
|
|
|
|
}, vjsonOption, that.vjson, windows)
|
|
}, vjsonOption, that.vjson, windows)
|
|
|
|
|
|
|
|
+ if (config.height === 'unset') {
|
|
|
|
+ delete config.height
|
|
|
|
+ }
|
|
|
|
+ if (config.width === 'unset') {
|
|
|
|
+ delete config.width
|
|
|
|
+ }
|
|
const win = new Ext.Window(config);
|
|
const win = new Ext.Window(config);
|
|
const holder = sender?.lookupReferenceHolder()
|
|
const holder = sender?.lookupReferenceHolder()
|
|
if (holder) {
|
|
if (holder) {
|
|
@@ -194,7 +200,7 @@ export class Scope {
|
|
|
|
|
|
reRender() {
|
|
reRender() {
|
|
this.vjson = this.buildVjson()
|
|
this.vjson = this.buildVjson()
|
|
- this.showPage(this._vjsonOption,this._dataOption, true)
|
|
|
|
|
|
+ this.showPage(this._vjsonOption, this._dataOption, true)
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|