mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-12 09:39:11 +02:00
drop old select/taglist/link incl. Choosen and MagicSuggest
This commit is contained in:
@ -351,6 +351,11 @@ export class et2_arrayMgr
|
||||
|
||||
parseBoolExpression(_expression : string)
|
||||
{
|
||||
if (typeof _expression === "undefined" || _expression === null)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
// Check whether "$" occurs in the given identifier, don't parse rows if we're not in a row
|
||||
// This saves booleans in repeating rows from being parsed too early - we'll parse again when repeating
|
||||
if(_expression.indexOf('$') >= 0 && this.perspectiveData.row == null && _expression.match(/\$\{?row\}?/))
|
||||
|
Reference in New Issue
Block a user