You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately, due to limitations of the property expression parser, we cannot implement property indirection, i.e. having a property variable that holds the name of the actual property one wants to access: ${${variable}}.
However, that's a crucial feature I missed multiple times in the past. One idea is to expose a function, e.g. value() which performs the indirection on the python level - without the need to adapt the expression parser: ${value(variable)}
The text was updated successfully, but these errors were encountered:
rhaschke
changed the title
Allow property indirection ${value(variable)}
Allow property indirection ${value(variable)}Oct 4, 2021
Unfortunately, due to limitations of the property expression parser, we cannot implement property indirection, i.e. having a property
variable
that holds the name of the actual property one wants to access:${${variable}}
.However, that's a crucial feature I missed multiple times in the past. One idea is to expose a function, e.g.
value()
which performs the indirection on the python level - without the need to adapt the expression parser: ${value(variable)}
The text was updated successfully, but these errors were encountered: