First, thanks to the creators, volunteers, and everyone who has contributed 
in the past and continues to contribute to mGSD today. I have been using it 
for a while and have tweaked the tool to suit my needs. I am copy pasting a 
tiddler I tweaked to mimic a Kanban board: column #1: tasks for today and 
those that might be pending (this is not the backlog). Column #2 has three 
sections: section (1) - WIP (work in progress); section (2) - starred items 
to denote "backlog" for today and (3) tasks marked as "done." The Done 
shows tasks for today and yesterday. I did not know how to hide tasks from 
yesterday. So either way, here it is:

//////////// start of code snippet ////////////

{{cols2{


{{col{

<<mgtdList
    title:'Ticklers Requiring Action by title'
    startTag:Tickler
    tags:'!Actioned'
    view:Tickler
    mode:global
    newButtonTags:'Tickler Enabled Once'
    where:'tiddler.ticklerIsActive()'
    sort:'title'
    dontShowEmpty:yes
    ignoreRealm:{{config.mGTD.getOptChk('AlertsIgnoreRealm')?'yes':''}}
>>

}}}

{{col{

<<mgtdList
    title:'WIP'
    startTag:Tickler
    tags:'@1'
    view:Tickler
    mode:global
    newButtonTags:'Tickler Enabled Once'
    where:'tiddler.ticklerIsActive()'
    sort:'title'
    dontShowEmpty:yes

    ignoreRealm:{{config.mGTD.getOptChk('AlertsIgnoreRealm')?'yes':''}}
>>

<<mgtdList
    title:'backlog'
    startTag:Tickler
    tags:'Starred'
    view:Tickler
    mode:global
    newButtonTags:'Tickler Enabled Once'
    where:'tiddler.ticklerIsActive()'
    sort:'title'
    dontShowEmpty:yes

    ignoreRealm:{{config.mGTD.getOptChk('AlertsIgnoreRealm')?'yes':''}}
>>



<<mgtdList
    title:'done'
    startTag:Tickler
    tags:'Actioned'
    group:day
    view:Tickler
    mode:global
    where:'!tiddler.olderThanDays(1)'
    newButtonTags:'Tickler Enabled Once'
    sort:'tickleDate'
>>

}}}

}}}

//////////// end of code snippet ////////////

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWikiDev" 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/tiddlywikidev.
For more options, visit https://groups.google.com/d/optout.

Reply via email to