> First, let me explain, what I'm trying to achieve. > > Show last 10 | 20 | 50 | 100 changes. > -------------------------------------------------------- > | | > | content that depends on my choice | > | | > -------------------------------------------------------- > So when I click 10 or 20 or 50 or 100, the area changs accordingly. > I've tried with tabs and nested sliders, and while the results work as > expected, the surrounding text is "malformed". For example:
Using http://www.TiddlyTools.com/#NestedSlidersPlugin http://www.TiddlyTools.com/#DOMTweaksPlugin you can write: ---------------------------------- Show last +++*[10]#panel1: stuff1 === | +++*[20]#panel2: stuff2 === | +++*[50]#panel3: stuff3 === | +++*[100]#panel4: stuff4 === changes. <<DOM move panel1>><<DOM move panel2>><<DOM move panel3>><<DOM move panel4>> ---------------------------------- Note use of "*" to make "transient sliders", so that only one is open at a time, and use of "#id:" syntax to give slider panel elements DOM id values. Then, using <<DOM>> macro, the named panels are moved from their default rendered location, so that they are grouped together, following the desired display text, so that opening a slider panel will not interfere with the text and links that appear above it. enjoy, -e Eric Shulman TiddlyTools / ELS Design Studios -- 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.

