2018-03-07 15:52:58 +00:00
created: 20180307153530187
modified: 20180307153530187
tags: Learning
title: TaskManagementExample (Draggable)
type: text/vnd.tiddlywiki
2020-04-14 21:02:40 +00:00
This is a version of the TaskManagementExample enhanced with the ability to drag and drop the task list to re-order them.
2018-03-07 15:52:58 +00:00
! Outstanding tasks
//Drag the tasks to re-order them//
<<list-tagged-draggable tag:"task" subFilter:"!has[draft.of]!tag[done]" itemTemplate:"TaskManagementExampleDraggableTemplate" emptyMessage:"You don't have any active tasks">>
! Completed tasks
//(Listed in reverse order of completion)//
2022-11-19 22:13:02 +00:00
<$list filter="[!has[draft.of]tag[task]tag[done]sort[modified]]">
2018-03-07 15:52:58 +00:00
<div>
2020-06-27 12:12:24 +00:00
<$checkbox tag="done"> ~~<$link/>~~</$checkbox>
2018-03-07 15:52:58 +00:00
</div>
</$list>