drop old select/taglist/link incl. Choosen and MagicSuggest

This commit is contained in:
ralf
2022-07-12 09:57:24 +02:00
parent ad82ea8faf
commit ce418affe8
15 changed files with 44 additions and 8791 deletions

View File

@ -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\}?/))