mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
fixed not detected number of autorepeated rows for id like "${row}@[name]" addressing first column, gave error "Problem in autorepeat fallback: too many rows"
This commit is contained in:
parent
ab3e235ed6
commit
40cb207afa
@ -288,7 +288,7 @@ var et2_grid = et2_DOMWidget.extend([et2_IDetachedDOM, et2_IAligned, et2_IResize
|
||||
var ident = content.expandName(value);
|
||||
// expandName() handles index into content (@), but we have to look up
|
||||
// regular values
|
||||
if(value.indexOf('@') < 0)
|
||||
if(value[0] != '@')
|
||||
{
|
||||
// Returns null if there isn't an actual value
|
||||
ident = content.getEntry(ident,false,true);
|
||||
@ -298,7 +298,7 @@ var et2_grid = et2_DOMWidget.extend([et2_IDetachedDOM, et2_IAligned, et2_IResize
|
||||
rowData[rowIndex] = jQuery.extend({}, rowDataEntry);
|
||||
content.perspectiveData.row = ++rowIndex;
|
||||
ident = content.expandName(value);
|
||||
if(value.indexOf('@') < 0)
|
||||
if(value[0] != '@')
|
||||
{
|
||||
// Returns null if there isn't an actual value
|
||||
ident = content.getEntry(ident,false,true);
|
||||
|
Loading…
Reference in New Issue
Block a user