Hi Linda

Sure, there's the edittext widget 
<https://tiddlywiki.com/prerelease/#EditTextWidget> made for this. I don't 
understand exactly how you want it presented but one could imagine you have 
the list of tiddler titles and next to each tiddler there's a button that 
opens the editor "mid list" so that you can edit it. The button would be a 
revealwidget <https://tiddlywiki.com/prerelease/#RevealWidget>, set up as 
an "accordion". That could be made something like so:

\define state() $:/state/$(currentTiddler)$

<$list filter="[tag[HelloThere]]">
<$set name=state value=<<state>>>
   <$reveal type="nomatch" state=<<state>> text="show">
      <$button set=<<state>> setTo="show">edit</$button>
   </$reveal>
   <$reveal type="match" state=<<state>> text="show">
      <$button set=<<state>> setTo="hide">close</$button>
      <$edit-text class="myclass"/>
   </$reveal>
</$set>
<$link/>
<br>
</$list>

<style>
.myclass {width:100%}
</style>

<:-)

-- 
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 [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/0f742250-b6d6-4208-8704-e58d9ab5867d%40googlegroups.com.

Reply via email to