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
as you can see myobj is present in different places.
For all places I must repeate placeholders (in my template): {d.myobj.a}-{d.myobj.b} {d.sourse.myobj.a}-{d.sourse.myobj.b} {d.dest.myobj.a}-{d.dest.myobj.b}
...
If what I want to print is always: {*.a}-{*.b}
it might be useful to have some sort of "function": f:myfunc(elem)
{f.myfunc(d.myobj) {f.myfunc(d.souce.myobj)
The text was updated successfully, but these errors were encountered:
Also, right now alias is not so powerfull.
I'm building an example where I have an array and in a cell I need to show a concatenation of two fields (i.e. "a vs b") if another field "c" is "true", but if "d" is "true" then I must show "e".
Doing that in a kind of function (or a super-power alias 😉) can help when you must modify the document template... 😅
Hi
Suppose to have:
as you can see
myobj
is present in different places.For all places I must repeate placeholders (in my template):
{d.myobj.a}-{d.myobj.b}
{d.sourse.myobj.a}-{d.sourse.myobj.b}
{d.dest.myobj.a}-{d.dest.myobj.b}
...
If what I want to print is always:
{*.a}-{*.b}
it might be useful to have some sort of "function":
f:myfunc(elem)
{f.myfunc(d.myobj)
{f.myfunc(d.souce.myobj)
The text was updated successfully, but these errors were encountered: