[tw5] Re: How to make checkboxes persistant in a table.

2019-07-11 Thread Sapphireslinger
@TonyM, your suggestion to use tiddler= in the table cell worked! My tables can now display any checkmarks and be checked and unchecked directly in "sidebar tab dropdown mode"! I did not understand what you meant by “and other w” though. So far I have ended up with this 35-day (1 month)

[tw5] Re: How to make checkboxes persistant in a table.

2019-07-10 Thread TonyM
Sapphireslinger The sideBar by definition does not have the currentTiddler value set. Either you can set it in that tiddler with the tiddlerWidget or when using a list to list tiddlers. Either that or you use tiddler= in the checkbox and other widgets where relevant. Regards Tony On

[tw5] Re: How to make checkboxes persistant in a table.

2019-07-10 Thread Sapphireslinger
Thank you so much, Mark S.! It worked! I have the table in a tiddler titled "Checkbox Table Journal" which is transcluded in my Habits tiddler thus: <$transclude tiddler="Checkbox Table Journal" mode="block"/> I can check a box in this Journal table with the "Habits" tiddler unopened (in

[tw5] Re: How to make checkboxes persistant in a table.

2019-07-10 Thread Sapphireslinger
Thank you so much, Mark S.! It worked! I have the table in a tiddler titled "Checkbox Table Journal" which is transcluded in my Habits tiddler thus: <$transclude tiddler="Checkbox Table Journal" mode="block"/> I can check a box in this Journal table with the "Habits" tiddler unopened (in view

[tw5] Re: How to make checkboxes persistant in a table.

2019-07-10 Thread 'Mark S.' via TiddlyWiki
Use the checkbox widget (https://tiddlywiki.com/#CheckboxWidget) and, perhaps, set each box to a field in your tiddler. Something like: <$checkbox field="w1-a" checked="done" unchecked="undone"/> ... <$checkbox field="w1-b" checked="done" unchecked="undone"/> etc. The problem with this