Hello Eric,

I am using the MatchTagsPlugin 2.0.3 with following code to make a
simple list:

<script>
 out.push('!{{center{Documents Project 12}}}');
   out.push('{{twocol{');
    var tids=store.getMatchingTiddlers('docs','created' );
     for( i = 0 ; i < tids.length ; i++) {
      out.push( "[[" + "O " + "|" + tids[tids.length-i-1].title + "]]
" + tids[tids.length-i-1].text );
}
return out.join('\n');
</script>

According the text in the info it would be possible to select the sort
order with '+' or '-',so I tried:
var tids=store.getMatchingTiddlers('docs','-created' );
But this is not working, my solution is to use the [tids.length-i-1]
instead of [i] for now.

Any pointers why it is not working, Okido

-- 
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.

Reply via email to