Hi,
SNAPSHOT_v8.3d_2012-08-07/Pro Deployment (built 2012-08-07)
FireFox 4
I've got an Uncaught JavaScript exception [_19 is null] in http://127.0.0.1:8888/app/sc/modules/ISC_Grids.js, line 653
which is a var in this JS code
which maps to this source code
The previous build I used was from 17/07 and I see a fix for a similar problem was added afterwards:
maybe the same check is the solution in placeEmbeddedComponent?
thanks,
SNAPSHOT_v8.3d_2012-08-07/Pro Deployment (built 2012-08-07)
FireFox 4
I've got an Uncaught JavaScript exception [_19 is null] in http://127.0.0.1:8888/app/sc/modules/ISC_Grids.js, line 653
which is a var in this JS code
Code:
function isc_GridRenderer_placeEmbeddedComponent
...
for (var i = 0; i < _17.length; i++) {
var _19 = _17[i];
var _20 = (_19.embeddedPosition == this.$57l);
if (_20)
continue;
var _21 = _19.getVisibleHeight();
if (_21 > _16) {
_16 = _21
}
}
Code:
var expandedComponentDelta = 0,
components = this.grid._getEmbeddedComponents(record);
for (var i = 0; i< components.length; i++) {
var expComponent = components[i];
var isWithin = (expComponent.embeddedPosition == this._$within);
if (isWithin) continue;
var componentHeight = expComponent.getVisibleHeight();
if (componentHeight > expandedComponentDelta) {
expandedComponentDelta = componentHeight;
}
}
The previous build I used was from 17/07 and I see a fix for a similar problem was added afterwards:
Code:
function _getExtraEmbeddedComponentHeight
...
var components = this.grid._getEmbeddedComponents(record)
...
for (var i = 0; i < components.length; i++) {
var component = components[i];
if (!component) continue;
thanks,
Comment