> By the way, I think the tiddler [[ContentsSlider]] at tiddlywiki.com > obsolete, since the slider macro seems directly used from within the > PageTemplate tiddler.
Unfortunately, using the slider macro directly in the PageTemplate currently results in the sidebar tabs *not* being automatically updated when tiddlers are changed. Try this: 1) go to TiddlyWiki.com 2) enable editing (AdvancedOptions) and reload 3) open 'index >' (to see list of tiddlers) 4) create a new tiddler 5) note that tab contents are *not* automatically updated The following is copied from the current TiddlyWiki.com PageTemplate: --------------- <div id='sidebarTabs' refresh='macro' force='true' macro='slider chkSideBarTabs SideBarTabs "index ยป" "display lists of tiddlers"'></ div> --------------- The problem is that the "force=true" attribute specified in the template seems to only apply when "refresh=content" is used, but *not* when "refresh=macro" is used. To work around this, a separate [[ContentSlider]] tiddler can be used to invoke the <<slider>> macro and then transclude that tiddler into the template using: --------------- <div id='sidebarTabs' refresh='content' force='true' macro='tiddler ContentSlider'></div> --------------- This produces the same rendered result (i.e., the tabs are inside a slider), while also preserving the automatic refresh handling to keep the list of tiddler in sync with the actual state of the document. enjoy, -e --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "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/TiddlyWiki?hl=en -~----------~----~----~----~------~----~------~--~---

