[tw] Multi-Selection Problem in ListBoxPlugin

2010-03-02 Thread Yang Li
Hi Eric Shulman (or anyone else who can help), I am new to TiddlyWiki Google Group and hope this is right way to contact you. I need a multi-Selection function and was referred to using ListboxPlugin (http://www.tiddlytools.com/#ListboxPluginInfo). What I did are: (1) installed ListboxPlugin (ver

[tw] Multi-Selection in ProjectEditTemplate

2010-03-08 Thread Yang Li
Hi, Anyone knows any alternative plugin to ListBoxPlugin that can also allow multiple selections in a list and save the selected items to a tiddler field. The context I intend to use multiple selection list is ProjectEditTemplate (see below); the platform is Windows XP. The ListBoxPlugin I tried

[tw] display tabs in tiddly wiki micro

2010-07-18 Thread Yang Li
Hi, I am trying to write a tiddlywiki micro that can display tabs of content (see below): modifier: yang created: modified: 2010070800 type: None tags: systemConfig excludeLists excludeSearch config.macros.BeforeIStart ={ handler: function(place, macroName, params, wikifier, paramStrin

[tw] Re: display tabs in tiddly wiki micro

2010-07-18 Thread Yang Li
I modified the code to something like below, but with no luck: modifier: yang created: modified: 2010070800 type: None tags: systemConfig excludeLists excludeSearch config.macros.BeforeIStart ={ handler: function(place, macroName, params, wikifier, paramString, tiddler){

[tw] Re: display tabs in tiddly wiki micro

2010-07-19 Thread Yang Li
> As for your macro, for most cases I would go down a different > road ...in that I would construct an output string (containing wiki > markup) in the macro code which at the very end of the macro I would > inject using the wikify function, like: > > out="!My Heading\n"; > out+="Here's My List...

[tw] Re: display tabs in tiddly wiki micro

2010-07-19 Thread Yang Li
Eric, That's great advice. The reason why I used Macro is that I can call some API to return needed value dynamically (see complete code). I don't know whether Tiddlywiki Macros can return values or not. But even if it can, I guess I still need to code the logic of return values in a macro first.

[tw] How to remove the right-hand side panel?

2010-07-20 Thread Yang Li
Hi, I want to keep only the main menu panel and content panel, and remove the right-hand side panel. But I want to do this programmingly as opposed to manually configure the system by individuals. Any suggestion on this? Yang -- You received this message because you are subscribed to the Googl

[tw] Re: display tabs in tiddly wiki micro

2010-08-23 Thread Yang Li
Further to this thread, is there any way that I can replace tiddler file name with a macro plus parameter, i.e. instead of using (a) <>, I intend to use something like (b) <> >>. The reason is that in (a) I have to pre-prepare all the tiddlers needed in the tab fields, whereas in (b) I only

[tw] Re: display tabs in tiddly wiki micro

2010-08-23 Thread Yang Li
I may mis-presented the problem. The real problem is assume that I can handle individual job display via <> .. <> Now if I want to display each job in a tab, do I have to generate K tiddlers each containing a line like "<>" and use <> to glue them together, or is it a better way to avoid introduc