fixed eT2 data returned from client for case where name-space contains more then one component eg. "nm[rows]"

This commit is contained in:
Ralf Becker 2015-03-18 21:30:22 +00:00
parent 0e4e557850
commit 7269552342

View File

@ -156,7 +156,8 @@ var et2_arrayMgr = Class.extend(
if (this.perspectiveData.key != null)
{
_path.unshift(this.perspectiveData.key);
// prepend components of this.perspectiveData.key to path, can be more then one eg. "nm[rows]"
_path = this.perspectiveData.key.replace(/]/g, '').split('[').concat(_path);
}
if (this.parentMgr != null)