Fix - should always be top level of content

This commit is contained in:
Nathan Gray 2013-04-10 11:05:20 +00:00
parent fdada6c3c0
commit 96d27aefc4

View File

@ -208,8 +208,8 @@ var et2_arrayMgr = Class.extend({
{ {
// Get the content array for the current row // Get the content array for the current row
var row = this.perspectiveData.row; var row = this.perspectiveData.row;
var cont = this.data; var row_cont = this.data[row];
var row_cont = cont[row]; var cont = this.getRoot().data;
// Check whether the expression has already been compiled - if not, // Check whether the expression has already been compiled - if not,
// try to compile it first. If an error occurs, the identifier // try to compile it first. If an error occurs, the identifier