mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
fixed eT2 data returned from client for case where name-space contains more then one component eg. "nm[rows]"
This commit is contained in:
parent
0e4e557850
commit
7269552342
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user