I would like to copy the values from a cObject data attribute in typoscript:
<f:cObject typoscriptObjectPath="lib.datei" data="{link}" />
in ts I can get it with:
lib.datei = TEXT
lib.datei.current = 1
it works, but I can not copy or reference it to another ts-object:
lib.test = TEXT
lib.test < lib.datei
if the value of lib.datei is a plain Text it works... where am I wrong...??