[tw] Re: TW5 show list of values in a field

2016-11-25 Thread 'Mark S.' via TiddlyWiki
I think what you what is a select tag with option groups inside. I created 3 tiddlers with tags GroupA and GroupB variously assigned. Each tiddler had a field called eponymously "field". Each tiddler also had a field called "findme" so I could limit my list to to just the tiddlers of interest.

[tw] Re: Where can I find CSS syntax for Stylesheets?

2016-11-25 Thread Mat
Hi Matt. The style definitions can follow standard style definition syntax, i.e .mystylename { color:green; border:2px solid yellow; ... } ...where colors can optionally be expressed in HEX form or in a few other variants. This is basic CSS so you can read up on syntax in just any "intro

[tw] Re: [TW5] How to add parent tag of tiddler when using a separate tiddler as a data entry form

2016-11-25 Thread Josiah
Mr BJ I have to say you are a man that DOES. J, x On Friday, 25 November 2016 18:43:14 UTC+1, BJ wrote: > > It is possible to add variables to the modal: > > <$action-sendmessage $message="tm-modal" $param="$:/_mc/frm/Slash Cmd > Entry" text="" x="$(x)$"/> > > and you can create the value of x

[tw] Re: Us congress hearing of maan alsaan Money laundry قضية الكونغجرس لغسيل الأموال للمليادير معن الصانع

2016-11-25 Thread Josiah
I have NO IDEA what this is about. On Friday, 25 November 2016 20:46:01 UTC+1, sady assad wrote: > > > > > > > > > > *موقع اليوتيوب الذي عرض فيديوهات جلسة استماع الكونجرس الأمريكي * > > * لمتابعة نشاطات غسل الأموال ونشاطات* > > > > *السعودي معن عبدالواحد الصانع* > > *مالك مستشفى وشركة سعد

[tw] Re: TW5 show list of values in a field

2016-11-25 Thread Jon
Hi Riz, That produces the dropdown containing a list of tiddlers tagged with "family" but the field values of "keyword" are also contained within the box rather than being placed in a list outside it. Thanks Jon On Friday, 25 November 2016 17:03:29 UTC, Riz wrote: > > > Try this > > <$select t

[tw] Fwd: Us congress hearing of maan alsaan Money laundry قضية الكونغجرس لغسيل الأموال للمليادير معن الصانع

2016-11-25 Thread sady assad
*موقع اليوتيوب الذي عرض فيديوهات جلسة استماع الكونجرس الأمريكي * * لمتابعة نشاطات غسل الأموال ونشاطات* *السعودي معن عبدالواحد الصانع* *مالك مستشفى وشركة سعد ومدارس سعد بالمنطقة الشرقية** بالسعودية * * ورئيس مجلس ادارة بنك اوال البحريني* *وتعليق محطة سي ان بي سي التلفزيونية* *مترجم بال

[tw] TiddlyWiki For Rent ...

2016-11-25 Thread Josiah
TiddlyWiki deserves a theme tune ... This could be adapted ... https://www.youtube.com/watch?v=Z5Oefacg7n8 -- 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 tiddly

[tw] Re: [TW5] How to add parent tag of tiddler when using a separate tiddler as a data entry form

2016-11-25 Thread BJ
It is possible to add variables to the modal: <$action-sendmessage $message="tm-modal" $param="$:/_mc/frm/Slash Cmd Entry" text="" x="$(x)$"/> and you can create the value of x by adding: <$action-setfield $tiddler="""$(MCPlugin)$""" $field=text $value="<$vars x=<>>{{$:/_mc/btn/addMCPSlashCmd}}

[tw] Re: TW5 show list of values in a field

2016-11-25 Thread Riz
Try this <$select tiddler="$:/temp/tag1"> <$list filter="[tag[family]]"> <> @@color:red;{{!!keyword}}@@ -- 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 ema

[tw] Re: Where can I find CSS syntax for Stylesheets?

2016-11-25 Thread Riz
Hi Mat The best methods to find the CSS Classes and changing colors are all mentioned above. Definitely get used to them. Also check out $:/themes/tiddlywiki/vanilla/base in your TW, all classes affecting the elements of y

Re: [tw] Re: How to open tiddler by $tw. ?

2016-11-25 Thread sini-Kit
Thank you Mario! I found my old plugin and I use there js function window.location.hash="HelloThere" I try to write a little code to use ENTER button in search field. I have put this code to my $:/boot/bootprefix.js and it works if my search field is on screen when tw5 start. if (document.

[tw] Re: Tiddler Movable

2016-11-25 Thread Josiah
i thought it had been done already? On Tuesday, 22 November 2016 15:54:55 UTC+1, Del Vee wrote: > > Hi everybody, > > I would like to meve tiddler like on this old tiddlywiki ( > http://www.digitaldimsum.co.uk/wp-content/uploads/2007/04/202.html) > > Could we do the same thing in a TW5 ? > > Thank

[tw] Re: Where can I find CSS syntax for Stylesheets?

2016-11-25 Thread Josiah
Remember its just an HTML file. All CSS works as normal. The ISSUE is to assert CSS at the right level of the cascade to get it noticed. A COMMON problem in TiddlyWiki styling is grasping what $:/tags/Stylesheet can do and can't. I think some of what you want to do needs to be in the DEFAULT s

Re: [tw] Re: How to open tiddler by $tw. ?

2016-11-25 Thread PMario
On Friday, November 25, 2016 at 4:32:21 PM UTC+1, Jeremy Ruston wrote: > > The support for multiple story rivers with their own navigation means that > the story logic primary lives in the navigator widget. However, it's not > very easy for external code to get hold of the story information maint

Re: [tw] Re: How to open tiddler by $tw. ?

2016-11-25 Thread Jeremy Ruston
Hi Mario, Sini-Kit, > There are actually 2 addToStory() functions. One in navigator.js and one in > story.js. ... IMO that's a bug, because the are slightly different, which > shouldn't be! I did intend to do some refactoring there :) The support for multiple story rivers with their own naviga

[tw] Re: How to open tiddler by $tw. ?

2016-11-25 Thread PMario
Hi sini-Kit, There are actually 2 addToStory() functions. One in navigator.js and one in story.js. ... IMO that's a bug, because the are slightly different, which shouldn't be! The story function looks like this: Story.prototype.addToStory = function(navigateTo,navigateFromTitle,options) var

[tw] Re: TiddlyWiki Hangout #101 will be on Saturday 26th November 2016 at 2pm GMT

2016-11-25 Thread Jed Carty
I am looking forward to this! I may have to run away a bit early though. -- 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 tiddlywiki+unsubscr...@googlegroups.com. T

[tw] Re: [TW5] Another way to make multiple tag-like fields

2016-11-25 Thread Jed Carty
The problem with what Riz posted is that it isn't the tags field so the list isn't going to show up correctly. Also if you change the colour of the tags in a non-tags field it won't show the correct colour there either. This is an awkward work around for now if you need one: <$set name=TheField

[tw] Re: Nested lists using tiddler titles as tags

2016-11-25 Thread Jed Carty
The quick answer is that you put a list around it that returns one element when your conditional is true and nothing when it isn't. So something like this may work: <$set name=tiddler-title value={{!!title}}> <> <$list filter="[tag[Area]]"> <$list filter="[tagtag limit[1]]"><$link>''{{!!titl

[tw] Re: Where can I find CSS syntax for Stylesheets?

2016-11-25 Thread Jed Carty
There are a bunch of things for css in tiddlywiki here , but I never organised it well and it is far from complete. I have way too many projects. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" gr

[tw] Re: [TW5] How to add parent tag of tiddler when using a separate tiddler as a data entry form

2016-11-25 Thread Jed Carty
It is nice to see that someone is actually using something I made. I am not certain exactly what you want in all of this, but for tagging the tiddler created with the plugin there are two ways to do it that I can think of right now. One would be to have the button that opens the modal set a fiel

Re: [tw] TiddlyWiki as a QUINE ... thoughts

2016-11-25 Thread Jeremy Ruston
Hi Tobias, Josiah, Joshiah prompted me to reply via Twitter > On 15 Nov 2016, at 19:27, Tobias Beer wrote: > > I get the feeling there's mostly a philosophical point you'e trying to make > but reading the wikipedia article on Quine I would say TiddlyWiki sure ain't > one. Wikipedia defines a

[tw] How to open tiddler by $tw. ?

2016-11-25 Thread sini-Kit
Hi! I always use in my plugins $tw.notifier.display("MyTiddler"); to make notify and $tw.modal.display("Mytiddler"); to make modal But t don't know how to open tiddler in standard way something like "$tw.Tiddler.display. " May be somebody know $tw. function which open tiddler? -- You r