Avoid errors if row_cont is null, just use an empty array

This commit is contained in:
Nathan Gray 2013-11-13 19:25:10 +00:00
parent b7487f8b72
commit 70b4ff412c

View File

@ -218,7 +218,7 @@ var et2_arrayMgr = Class.extend(
{
// Get the content array for the current row
var row = this.perspectiveData.row;
var row_cont = this.data[row];
var row_cont = this.data[row] || {};
var cont = this.getRoot().data;
var _cont = this.data;