/
Subexpressions
Subexpressions
IdealDoc offers support for subexpressions, which allows you to invoke multiple helpers within a single directive, and pass in the results of inner helper invocations as arguments to outer helpers. Subexpressions are delimited by parentheses.
{{outer-helper (inner-helper 'abc') 'def'}}
In this case, inner-helper will get invoked with the string argument 'abc', and whatever the inner-helper function returns will get passed in as the first argument to outer-helper (and 'def' will get passed in as the second argument to outer-helper).
, multiple selections available,
Related content
More about IdealDoc functions
More about IdealDoc functions
More like this
Variables
Variables
More like this
Control Directives
Control Directives
More like this
Lookup
Lookup
More like this
Conditionals
Conditionals
More like this
Create a Query
Create a Query
More like this