try removing the other types, so it looks like this:
listMode: ["group"],
Then save and RELOAD. Maybe that'll work...
Cheers
;Daniel
--
Daniel Baird
Cop: "Do you know how fast you were going, sir?"
Heisenberg: "No, but I know exactly where I am!"
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.format([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);
}
}
}
}
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"]
},