|
@@ -61207,7 +61207,7 @@ define(['exports'], function (exports) { 'use strict';
|
|
|
//# sourceMappingURL=utils.js.map
|
|
|
|
|
|
function toString$2(value) {
|
|
|
- if (typeof value === 'undefined') {
|
|
|
+ if (typeof value === 'undefined' || value === null) {
|
|
|
return "";
|
|
|
}
|
|
|
if (typeof value === 'number' && isNaN(value)) {
|
|
@@ -61219,7 +61219,7 @@ define(['exports'], function (exports) { 'use strict';
|
|
|
return ("" + value);
|
|
|
}
|
|
|
function isEmpty(value) {
|
|
|
- if (typeof value === 'undefined') {
|
|
|
+ if (typeof value === 'undefined' || value === null) {
|
|
|
return true;
|
|
|
}
|
|
|
if (typeof value === 'number' && isNaN(value)) {
|
|
@@ -61366,7 +61366,6 @@ define(['exports'], function (exports) { 'use strict';
|
|
|
var vm = extHandle.lookupViewModel();
|
|
|
return vm.yvanScope;
|
|
|
}
|
|
|
- //# sourceMappingURL=lib.js.map
|
|
|
|
|
|
/**
|
|
|
* 全局 ajax 方法
|
|
@@ -95866,6 +95865,7 @@ define(['exports'], function (exports) { 'use strict';
|
|
|
}
|
|
|
// throw new TypeError('无法识别的调用方法')
|
|
|
}
|
|
|
+ //# sourceMappingURL=grid.js.map
|
|
|
|
|
|
function initTextfield () {
|
|
|
var cc = Ext.form.field.Text.prototype.constructor;
|