Re: [tw5] Tiddler Count to dictate HTML table rowspan

2019-01-31 Thread Mohammad
That's right! On Thursday, January 31, 2019 at 10:48:36 AM UTC+3:30, TonyM wrote: > > But filter in quotes -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [tw5] Tiddler Count to dictate HTML table rowspan

2019-01-30 Thread TonyM
But filter in quotes -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+unsubscr...@googlegroups.com. To post to this group, send email to

Re: [tw5] Tiddler Count to dictate HTML table rowspan

2019-01-30 Thread Mohammad
Hi Is tiddler attribute here added by mistake <$count tiddler="Contents" filter=[tag[Contents]]/> The documentation does show such attribute for Count Widget! I think the correct syntax is as below <$count filter=[tag[Contents]]/> --Mohammad On Thursday, August 16, 2018 at 7:33:17 PM

Re: [tw5] Tiddler Count to dictate HTML table rowspan

2018-08-16 Thread Jeremy Ruston
Hi Stuart The trick is to use the wikify widget to render the output of the count widget into a variable, and then to transclude that variable as the value of the colspan attribute. For example: <$wikify name="count" text="<$count filter='[tag[Contents]]'/>"> >> <$count tiddler="Contents"

[tw5] Tiddler Count to dictate HTML table rowspan

2018-08-16 Thread 'Stuart Amor' via TiddlyWiki
I am trying to devise a way where a tiddler tag count dictates the number of merged columns in a table. The following lines gives me the tiddler tag count: <$count tiddler="Contents" filter=[tag[Contents]]/> And I am using the following script example to generate a html table colspan: 3