In my wiki I use this template to present certains tiddlers :
!!{{!!description}}
|chuffmed|k
| <$image width="300" source={{!!PIECE_Image}}></$image> |<<table-dynamic filter:"[tag[Piece]search:PIECE_Parent{!!title}]" fields:"title description PIECE_Matiere" class:"lignes" editButton:"no">>|
This works fine. The table-dynamic
macro is from @Mohammad 's Shiraz plugin.
Now I need to show those tiddler in tabs. I managed to change some transclusion definitions,
!!!<$transclude tiddler=<<currentTab>> field="description" />
|chuffmed|k
| <$image width="300" source=<$transclude tiddler=<<currentTab>> field="PIECE_Image" /></$image> |<<table-dynamic filter:"[tag[Piece]search:PIECE_Parent{!!title}]" fields:"title description PIECE_Matiere" class:"lignes" editButton:"no">>|
but, for the image inclusion, this doesn’t work and I don’t know how to express the table dynamic filter [tag[Piece]search:PIECE_Parent{!!title}]
to make this work to use currentTab
title field.