Hi Matthew, Sorry for the late answer. I haven't seen your post until now.
Le mardi 24 février 2015 06:56:03 UTC+1, Matthew Petty a écrit : > > Hi Alberto, > I've got an example up and running at http://mjptest.tiddlyspot.com/, but > the contents of the tiddlers is not revealed in the slider. What have I > done wrong? > Thanks for your suggestion. > Matthew > OK. The problem is in your first macro "sliderTask". Near the end, it says to show the description field: <br>{{!!description}} But your task tiddlers haven't actually any description field. Instead, their contents are in the text field. Thus, you have to change to that: <br>{{!!text}} or that (which is the same): <br><$view field="text"/> So the entire code for that macro is: \define sliderTask(task) <$reveal state=<<qualify "$:/state/task">> type="nomatch" text="$task$"> <$button set=<<qualify "$:/state/task">> setTo="$task$" class= "tc-btn-invisible"> {{$:/core/images/right-arrow}} $task$</$button> </$reveal> <$reveal state=<<qualify "$:/state/task">> type="match" text="$task$"> <$button set=<<qualify "$:/state/task">> setTo="" class="tc-btn-invisible"> {{$:/core/images/down-arrow}} $task$</$button> <br><$view field=" </$reveal> \end And concerning the other problem: You can see that I have my task list split based on the "tasklist" field. > Is there a way to make the lists sort by this field? I would like to have > my work tasks first. That's why I put the number in there. > It is enough to add a sort operator at the end of your list widget: <$list filter="[!title[TaskSkeleton]!title[JournalSkeleton]!has[draft.of]tag[task]!tag[done]!each[tasklist] *sort[tasklist]*]"> Best wishes, Alberto -- 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 post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/tiddlywiki. For more options, visit https://groups.google.com/d/optout.

