Thanks so much, Kralik!  This is pretty much exactly what I was
looking for.

I have used your code to create a complete 'Action Dashboard' page
prioritizing starred items for 'next' and 'future' actions.

Here it is:

{{cols2{

{{col{

<<tiddler 'Ticklers Requiring Action'>>

<<mgtdList title:'Next Actions by Context' startTag:Action tags:'Next
&& !Done && Starred' view:ActionProj mode:global
        group:Context
        gView:Context
        newButtonTags:'Action Next'
        where:tiddler.hasActiveProject()
>>

<<mgtdList startTag:Action tags:'Next && !Done && !Starred'
view:ActionProj mode:global
        group:Context
        gView:Context
        where:tiddler.hasActiveProject()
        newButtonTags:'Action Next'
        dontShowEmpty:yes
>>

<<mgtdList title:'Waiting Actions' startTag:Action tags:'[(Waiting
For)] && !Done' view:ActionProj mode:global
        group:Context
        gView:Context
        where:tiddler.hasActiveProject()
        newButtonTags:'Action [(Waiting For)]'
        >>

}}}

{{col{

<<mgtdList title:'Future Actions' startTag:Action tags:'Future && !
Done && Starred' view:ActionProj mode:global
        group:Context
        gView:Context
        newButtonTags:'Action Future'
        where:tiddler.hasActiveProject()
        >>

<<mgtdList startTag:Action tags:'Future && !Done && !Starred'
view:ActionProj mode:global
group:Context
        gView:Context
        where:tiddler.hasActiveProject()
        newButtonTags:'Action Future'
        dontShowEmpty:yes
>>

{{scroll10{

<<mgtdList title:'Done Actions' startTag:Action tags:'Done'
view:DoneAction mode:global
        newButtonTags:'Action Next Done'
        sort:-modified
>>

}}}

}}}

}}}

On Jun 13, 6:27 pm, Kralik <[email protected]> wrote:
> I have a mgtdlist set up with one that showsstarredand the other
> that shows only unstarred. So, if I star an item, it goes to the top
> list, unstar to the bottom list. The practical result is thatstarred
> items are on top. In my own custom dashboard:
>
> <<mgtdList title:'Next Actions by Context' startTag:Action tags:'Next
> && !Done &&Starred' view:ActionProj mode:global
>         group:Context
>         gView:Context
>         newButtonTags:'Action Next'
>         where:tiddler.hasActiveProject()
>
>
>
> <<mgtdList startTag:Action tags:'Next && !Done && !Starred'
> view:ActionProj mode:global
>         group:Context
>         gView:Context
>         where:tiddler.hasActiveProject()
>         newButtonTags:'Action Next'
>         dontShowEmpty:yes
>
>
>
> If the extra spacing bothers you, you can use CSS to help out a bit.
>
> On Jun 3, 10:15 am, Arkady Grudzinsky <[email protected]> wrote:
>
> > This is an old trend, but here is a simple work-around for sortingstarred
> > items in front of others - just add a "+" or a "*" or a "!" in front of the
> > item title.  This will put the item on top of the list alphabetically.  You
> > can even use different symbols to differentiate priority. This approach is,
> > in fact, mentioned by David Allen himself.
>
> > Arkady.
>
> > On Thu, May 7, 2009 at 2:23 PM, Laurence <[email protected]> wrote:
>
> > > Hello,
>
> > > I'm not having much luck figuring out the code referenced in the above
> > > link, more due to my lack of coding knowledge than the code itself I'm
> > > sure.  If anyone has any luck making some code to prioritizestarred
> > > items by project, please do post it here and/or feel free to e-mail
> > > me.
>
> > > Thanks very much,
> > > Laurence
>
> > > Laurence wrote:
> > > > Hello, and thanks for your reply, Simon.
>
> > > > This looks a little beyond my skillset, but I will experiment.
>
> > > > Thanks again for all your help,
> > > > Laurence
>
> > > > On May 5, 4:42 pm, Simon Baird <[email protected]> wrote:
> > > > > Not without some coding.
>
> > > > > If you were to code this functionality you would need to write a 
> > > > > method
> > > in
> > > > > here:
>
> > > > >http://trac.tiddlywiki.org/browser/Trunk/contributors/SimonBaird/mgtd.
> > > ..
>
> > > > > called something like sort_starredFirst.
>
> > > > > And then you could use it in mgtdList with the sort parameter.
>
> > > > > On Tue, May 5, 2009 at 5:53 AM, Laurence <[email protected]> wrote:
>
> > > > > > Hello,
>
> > > > > > Thank you for your reply.  I have looked at [[Mankoff dash]].  Thank
> > > > > > you for pointing this out.
>
> > > > > > The [[Mankoff dash]] view does include 'StarredActions', but I
> > > wonder
> > > > > > if it is possible to simply orderstarreditems so they appear first
> > > > > > under headings (projects) I have already created.  The 'Starred
> > > > > > Actions' view takes all thestarredactions from all of my different
> > > > > > projects and groups them together.  I would like to prioritize
> > >starred
> > > > > > items by project.  Is this possible?
>
> > > > > > On May 4, 3:17 pm, mankoff <[email protected]> wrote:
> > > > > > > On May 4, 2:35 pm, Laurence <[email protected]> wrote:
>
> > > > > > > > Hello,
>
> > > > > > > > I'm using Monkey GTD 3.0, and I'm enjoying this tool very much.
>
> > > > > > > > Would anyone one know if there is a way to groupstarred'next
> > > action'
> > > > > > > > items together at the top of a list of actions rather than 
> > > > > > > > having
> > > them
> > > > > > > > spread out in alphabetical order along with the other (not
> > >starred)
> > > > > > > > 'next action' items in a list?
>
> > > > > > > > I know about the 'StarredItems' view, but I would like to have
> > > > > > > >starreditems prioritized (i.e. at the top of the list) in
> > > different
> > > > > > > > 'context' views.
>
> > > > > > > > Thank you,
> > > > > > > > Laurence
>
> > > > > > > > PS  -  I have received help on related topics from members of
> > > this
> > > > > > > > bulletin board, and I would like to thank those that have 
> > > > > > > > replied
> > > to
> > > > > > > > my questions.  Special thanks to Simon who has shared some code
> > > in
> > > > > > > > previous posts.
>
> > > > > > > See for example [[Mankoff dash]] under sidebar Work > Advanced.
>
> > > > > > >    -k.
>
> > > > > --
> > > > > [email protected]
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "GTD 
TiddlyWiki" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/GTD-TiddlyWiki?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to