ELS assisted me with the following script:
<script>
var tag=store.getMatchingTiddlers("TestProject && Urgent && !
Completed","+title");
var hdr="|sortable|k\n| !Title | !Task | !Reminders | !Urgent? | !
Complete? |h";
var fmt="| [[%0|%0]] | %1 | ~~<<tiddler [[%0##Due]]>>~~ | [X
(%0:Urgent)] | [X(%0:Completed)] |";
var out=[hdr];
if (!tag.length) out=["No Tiddlers found"];
for (var i=0; i<tag.length; i++)
out.push(fmt.format([tag[i].title,store.getTiddlerSlice
(tiddler.title, "Task")]));
return out.join('\n');
</script>
Everything works but the Slice "Task" does not populate in the table.
Thanks !!
Mike
P.S. ELS, if you responded to this via my Email, could you please post
here? Locked out of email temporarily.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/TiddlyWiki?hl=en
-~----------~----~----~----~------~----~------~--~---