mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
Don't try to split integer keys (auto-repeat rows)
This commit is contained in:
parent
0a88d60d74
commit
04fe78762f
@ -149,7 +149,11 @@ var et2_arrayMgr = Class.extend({
|
||||
|
||||
if (this.splitIds)
|
||||
{
|
||||
indexes = _key.split('[');
|
||||
if(typeof _key === "string")
|
||||
{
|
||||
_key = _key.replace("[","[").replace("]","]");
|
||||
indexes = _key.split('[');
|
||||
}
|
||||
if (indexes.length > 1)
|
||||
{
|
||||
indexes = [indexes.shift(), indexes.join('[')];
|
||||
@ -293,6 +297,11 @@ var et2_arrayMgr = Class.extend({
|
||||
return et2_evalBool(val);
|
||||
},
|
||||
|
||||
/**
|
||||
* ?
|
||||
*
|
||||
* @param _row [integer?] Key for into the _root for the desired row
|
||||
*/
|
||||
openPerspective: function(_owner, _root, _row)
|
||||
{
|
||||
// Get the root node
|
||||
|
Loading…
Reference in New Issue
Block a user