Following the enlightening guidance I got from my previous question on querying shadow tiddlers, I’ve decided to try my luck with the Shiraz Dynamic Table macro.
- I’m trying to build a (dynamic) table by querying shadow tiddlers created by importing a CSV.
- The “parent” plugin tiddler is named
Data/Terminals
- Inside it are the children called
Terminal-nnn
, forn
up to the low thousands - Children have fields such as:
Agent
Location
Service_ID
Terminal_ID
I’m using the following macro:
<<table-dynamic
filter:"[all[shadows+tiddlers]prefix[Data/Terminals/]]"
pagination:"yes"
stateTiddler:"xyz"
>>
The macro returns an empty table but in its footer it states: “Displaying 1 through 25 of 1102 Results” which is the correct total number of entries. It looks like the filter is correct but nothing is displayed.
Any idea what I might be missing?