> On Nov 27, 8:18 am, koyut <koyut.c...@gmail.com> wrote:
> > Is it possible to display only a set default of displaying tags in a
> > default format like groups, and title only and removing the sort
> > options?
> How do you mean, exactly? List only certain tags in groups?
> On Nov 27, 9:27 pm, koyut <koyut.c...@gmail.com> wrote:
> > Bump any one?
> > On Nov 27, 8:18 am, koyut <koyut.c...@gmail.com> wrote:
> > > Is it possible to display only a set default of displaying tags in a
> > > default format like groups, and title only and removing the sort
> > > options?
Hmm... In taggly tagging you can sort the tiddlers with the same tags.
What I actually need is to disable the sorting options and have a
default one that you cannot toggle. And the default sorting I am
thinking of is groups.
On Nov 28, 11:14 am, "Trü Olanis" <Tru.Ola...@gmail.com> wrote:
> How do you mean, exactly? List only certain tags in groups?
> On Nov 27, 9:27 pm, koyut <koyut.c...@gmail.com> wrote:
> > Bump any one?
> > On Nov 27, 8:18 am, koyut <koyut.c...@gmail.com> wrote:
> > > Is it possible to display only a set default of displaying tags in a
> > > default format like groups, and title only and removing the sort
> > > options?
> Hmm... In taggly tagging you can sort the tiddlers with the same tags. > What I actually need is to disable the sorting options and have a > default one that you cannot toggle. And the default sorting I am > thinking of is groups.
> On Nov 28, 11:14 am, "Trü Olanis" <Tru.Ola...@gmail.com> wrote: > > How do you mean, exactly? List only certain tags in groups?
> > On Nov 27, 9:27 pm, koyut <koyut.c...@gmail.com> wrote:
> > > Bump any one?
> > > On Nov 27, 8:18 am, koyut <koyut.c...@gmail.com> wrote:
> > > > Is it possible to display only a set default of displaying tags in a > > > > default format like groups, and title only and removing the sort > > > > options?
-- Daniel Baird Cop: "Do you know how fast you were going, sir?" Heisenberg: "No, but I know exactly where I am!"
> removing the sort options would require some minor javascript surgery. > respond if you still want some help with this.
> Simon.
> On Nov 27, 2007 10:18 AM, koyut < koyut.c...@gmail.com> wrote:
> > Is it possible to display only a set default of displaying tags in a > > default format like groups, and title only and removing the sort > > options?
To remove the list controls you need to comment out a few lines in TagglyTagging plugin. The lines are highlighted below. Use // at the start of the line to comment it out.
refresh: function(place) { var title = place.getAttribute("title"); removeChildren(place); if (store.getTaggedTiddlers(title).length > 0) { var lingo = config.taggly.lingo; //config.taggly.createListControl(place,title,"hideState"); if (config.taggly.getTagglyOpt(title,"hideState") == "show") { createTiddlyElement(place,"span",null,"tagglyLabel",lingo.labels.label.form at([title])); //config.taggly.createListControl(place,title,"title"); //config.taggly.createListControl(place,title,"modified"); //config.taggly.createListControl(place,title,"created"); //config.taggly.createListControl(place,title,"listMode"); //config.taggly.createListControl(place,title,"excerpts"); //config.taggly.createListControl(place,title,"numCols"); config.taggly.createTagglyList(place,title); } } }
}
To make a default list option you should edit the section below as Daniel says earlier in this thread. For each of the items in listOpts the first one is the default. I've made "group" the default below by moving it to the start of the list. Adjust others as required:
config: { showTaggingCounts: true, listOpts: { // the first one will be the default sortBy: ["title","modified","created"], sortOrder: ["asc","desc"], hideState: ["show","hide"], listMode: ["group","normal","sitemap","commas"], numCols: ["1","2","3","4","5","6"], excerpts: ["noexcerpts","excerpts","contents","sliders"] },
On Jan 17, 2008 7:58 AM, koyut <koyut.c...@gmail.com> wrote:
> On Jan 14, 2008 8:21 PM, Simon Baird <simon.ba...@gmail.com> wrote:
> > removing the sort options would require some minor javascript surgery. > > respond if you still want some help with this.
> > Simon.
> > On Nov 27, 2007 10:18 AM, koyut < koyut.c...@gmail.com> wrote:
> > > Is it possible to display only a set default of displaying tags in a > > > default format like groups, and title only and removing the sort > > > options?
> To remove the list controls you need to comment out a few lines in > TagglyTagging plugin. The lines are highlighted below. Use // at the start > of the line to comment it out.
> refresh: function(place) { > var title = place.getAttribute("title"); > removeChildren(place); > if (store.getTaggedTiddlers(title).length > 0) { > var lingo = config.taggly.lingo; > //config.taggly.createListControl(place,title,"hideState"); > if (config.taggly.getTagglyOpt(title,"hideState") == "show") { > createTiddlyElement(place,"span",null,"tagglyLabel",lingo.labels.label.form at([title])); > //config.taggly.createListControl(place,title,"title");
> To make a default list option you should edit the section below as Daniel > says earlier in this thread. For each of the items in listOpts the first one > is the default. I've made "group" the default below by moving it to the > start of the list. Adjust others as required:
> config: { > showTaggingCounts: true, > listOpts: { > // the first one will be the default > sortBy: ["title","modified","created"], > sortOrder: ["asc","desc"], > hideState: ["show","hide"], > listMode: ["group","normal","sitemap","commas"], > numCols: ["1","2","3","4","5","6"], > excerpts: ["noexcerpts","excerpts","contents","sliders"] > },
> On Jan 17, 2008 7:58 AM, koyut < koyut.c...@gmail.com> wrote:
> > I still am Interested
> > On Jan 14, 2008 8:21 PM, Simon Baird <simon.ba...@gmail.com> wrote:
> > > removing the sort options would require some minor javascript > > > surgery. respond if you still want some help with this.
> > > Simon.
> > > On Nov 27, 2007 10:18 AM, koyut < koyut.c...@gmail.com> wrote:
> > > > Is it possible to display only a set default of displaying tags in a
> > > > default format like groups, and title only and removing the sort > > > > options?