I created two fields in templavoila and want to access the image url (data object) from the other field.

field1 - typoscript - type: image:

10 = IMG_RESOURCE
10.file.import = uploads/tx_templavoila/
10.file.import.current = 1
10.file.import.listNum = 0
10.file.maxH = 300

field2 - typoscript:

10 = IMG_RESOURCE
10.file.import.data = field1

But id doesn't work. I tried various variations of the above, but nothing works :(

Any help would be appreciated! Thanks,

Mark.

link|improve this question

75% accept rate
feedback

1 Answer

up vote 0 down vote accepted

The object should be IMAGE type instead of IMG_RESOURCE. And on the field2 typoscript:

10 = IMAGE
10.file.import.field = field1
10.file.import = uploads/tx_templavoila/
10.file.import.listNum = 0
10.file.maxH = 300

This should display the image uploaded on the field type image "field1".
Hope this helps!
Cornelia

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.