On Saturday, February 1, 2014 4:25:51 AM UTC-8, Mat wrote: > > Is it possible to make tabs, such as in the sidebar, not take up loading > time until actually opened? I have identified this as one main reason why > my cell phone loads so slowly. (Actually for my main TW's I use a MainMenu > consisting of a fET rendering a TreeView <http://treeview.tiddlyspot.com/>... > great automated menu, but browser goes into total coma every time I load > the TW). >
In a tabset, only the current panel is rendered. When you switch tabs, the current DOM content is removed and the new tab panel content is rendered. Thus, tabs are "deferred rendering" by default. One performance problem is that the sidebar tabs, especially the timeline tab, is very compute-heavy, and can bog down when there are larger number of tiddlers. One quick workaround trick is to leave the more>shadow tab showing most of the time (that list is fixed length, and relatively short), and only view the timeline, tags, missing, or orphans tabs when actually necessary. > I have currently solved it with a > NestedSliders<http://tiddlytools.com/#NestedSlidersPlugin>construction where > the buttons stay fixed (like in e.g a horizontal menu) > that I picked up from Master Eric at some point in history. The content > does not render until slider opened because the "..." command is used. > ... > This is all pretty neat, but while the buttons stay fixed, the tiddler > content pushes down one another upon opening. > You can add the "transient slider" option (the "*" symbol) to your nested slider syntax, like this: +++*[Areas ↴]#panel1:... <br><<tiddler AreaTab>> === +++*[ToDo↴]#panel2:... <br><<tiddler ToDoTab>> === +++*[Ref. ↴]#panel3:... <br><<tiddler Reference>> === When one *transient* slider is opened, any other transient sliders are closed automatically (i.e., only one slider panel remains visible at a time). This prevent multiple slider panels from 'stacking'. enjoy, -e Eric Shulman TiddlyTools / ELS Design Studios EVERY DONATION IS IMPORTANT! HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"... http://TiddlyTools.github.com/fundraising.html#MakeADonation Professional TiddlyWiki Consulting Services... Analysis, Design, and Custom Solutions: http://www.TiddlyTools.com/#Contact -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/tiddlywiki. For more options, visit https://groups.google.com/groups/opt_out.

