Thanks Okido. Your script works nice. But what if I want to add a column for a custom field called Keyword? I think can modify the out.push line to add "!keyword|" but I'm not sure how to get its value shown in a table row.
On 8月20日, 上午12時37分, okido <[email protected]> wrote: > Hi Claudio, > > You could use autoNumber plugin > formhttp://members.home.nl/zonborgele/autoNumber.html > > But it requires Datatiddler plugin write now. > A re-write is in the make that can create a tiddler tiddler in the > format:>> Leading text 123456 trailing text <<. > > It will longer depend on Datatiddler plugin and text can be left out. > > To make a table the following script could be used as an example: > > <script> > var out=[]; > out.push("|!Title|!Date|"); //create tabel header > var tids=store.getTaggedTiddlers('specific'); //get tiddlers > tagged with: specific > for( i = 0 ; i < tids.length ; i++) { > out.push( "|" + "[[" + tids[i].title + "|" + tids[i].title + > "]] " + "|" + tids[i].created +"|"); // add a table entry for every > tiddler} > > return out.join('\n'); // print it > </script> > > Past it in a tiddler and of you go, just expand the line that creates > the table entries and the header, InlineJavaScript plugin required. > > Have a nice day, Okido > > Okido > > On 19 Aug, 01:08, Kashgarinn <[email protected]> wrote: > > > > > I'd recommend checking out tagglytagging plugin from > > MPTW:http://mptw.tiddlyspot.com/ > > > Basically you turn a tiddler upside down making the tiddler unique, > > but the tags the common link between information. > > > Tiddler names are unique, so use that as your identifier, have the > > unique information inside the tiddler, then just use tagglytagging and > > tags to make sense of the information like you'd want. > > > I'm not so sure it's exactly what you need or want, but tags to me is > > a main reason why TW is so great. > > > K.- 隱藏被引用文字 - > > - 顯示被引用文字 - -- 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.

