[tw5] Prevent an empty line

2024-03-23 Thread vinvi...@gmail.com
{{!!FieldName1}} {{!!FieldName2}} {{!!FieldName3}} shows the values from these fields on one line. {{!!Fieldname1}} {{!!Fieldname2}} {{!!Fieldname3}} Displays the values of these fields among eachother. But if the field {{!!FieldName2}} contains no value, a blank line will be displayed.

[tw5] Re: Search in field

2023-07-15 Thread vinvi...@gmail.com
List as link: <$link to=<> /> Op zaterdag 15 juli 2023 om 12:54:13 UTC+2 schreef vinvi...@gmail.com: > Hello, > > > > > > > > > > *<$keyboard key="escape" actions='<$action-setfield > $tiddler="$:/temp/demo/qa/search-detail

[tw5] Search in field

2023-07-15 Thread vinvi...@gmail.com
Hello, *<$keyboard key="escape" actions='<$action-setfield $tiddler="$:/temp/demo/qa/search-details" $field="text" $value=""/>'><$edit-text tiddler="$:/temp/demo/qa/search-details" filed=title tag=input default="" placeholder="Search" class="alert alert-info w-100"/><$list

[tw5] Re: Macro

2023-02-05 Thread vinvi...@gmail.com
wikitext syntax are doubled, when used in filter syntax, they are SINGLE > (i.e., `[enlist<__values__>]`... NOT `[enlist<<__values__>>]`) > > enjoy, > -e > On Sunday, February 5, 2023 at 7:24:48 AM UTC-8 vinvi...@gmail.com wrote: > >> Hi, I'm trying

[tw5] Macro

2023-02-05 Thread vinvi...@gmail.com
Hi, I'm trying to make a macro. This is my code so far: \define checkbox-list()<$list variable="LIST-FROM-FIELD" filter="[list[!!LIST-FROM-FIELD]]"><$checkbox listField="WRITE TO FIELD" checked=<>> <> It now reads the values from a field and displays them with a checkbox in front of them.

[tw5] Tag to current tiddler after selection

2021-08-28 Thread vinvi...@gmail.com
Hello, The following gives me a list of tiddlers with a checkbox. After selection, the tiddler defined in <> is tagged to the selected tiddler. *<$keyboard key="escape" actions='<$action-setfield $tiddler="$:/SearchTiddler" $field="text" $value=""/>'>* *<$edit-text tiddler="$:/SearchTiddler"

[tw5] List: fieldname = tiddlername currentTiddler

2021-06-12 Thread vinvi...@gmail.com
Hello, The following is listing the values out of field "*warning*" of tiddler " *@fields*". The name of the listed field bears the same name as the tiddler containing the list-code: In tiddler warning: *<$list filter="[list[@fields!!warning]search:title{$:/temp/search@fields}]"

Re: [tw5] List values and add/remove from field

2021-06-04 Thread vinvi...@gmail.com
;> add or remove the value in field warning of the current tiddler. > > > Then you need to use > > [all[tiddlers]has:field[warning]] > > > Look at "has operator" on tiddlywiki.com > > > > Best wishes > Mohammad > > > On Fri, Jun 4, 2021 at

Re: [tw5] List values and add/remove from field

2021-06-04 Thread vinvi...@gmail.com
reate a list search lets you to search in the warning field of current > tiddler > > Best wishes > Mohammad > > > On Fri, Jun 4, 2021 at 4:35 PM vinvi...@gmail.com > wrote: > >> Thanks Mohammad, >> what you have done is working. Thank you so much! >> >

Re: [tw5] List values and add/remove from field

2021-06-04 Thread vinvi...@gmail.com
ges/new-button}} > > <$button type="button" class="btn btn-info btn-mini" > > <$action-listops $field="warning" $subfilter="-[]" /> > {{$:/core/images/delete-button}} > > <$text text=<>/> > > > I modified your

[tw5] List values and add/remove from field

2021-06-04 Thread vinvi...@gmail.com
Hello, To avoid duplications of values in fields warning; list all unique values from the warning field of all tiddlers with 2 buttons: Add and Remove. (Add and remove from $(currentTiddler)$ ) <$list filter="[tags:warning[]]" variable=warning-value> <$button type="button" class="btn

[tw5] Count hits in numerical order

2021-03-23 Thread vinvi...@gmail.com
Hello, List (Unique) text field of tiddlers tagged: "(S)", where all tiddlers with tag "(I)" and field: "rate" with value: "2" are tagged to. <$list filter="[[2]listed[rating]tag[(I)]]"> <$list filter="[all[current]tags[]]+[tag[(S)]] +[limit[1]]"> {{!!text}} *Each listed (S) tagged tiddler

[tw5] Checkbox in front of hits.

2021-03-16 Thread vinvi...@gmail.com
Hello, The following code displays a list of tiddlers and a checkbox in front of them. By clicking the checkbox, the relevant tiddler is tagged to the current tiddler. *\define tagging() $(currentTiddler)$* *<$list filter="[!is[system]search:text[Specific-template]search:title[,]]"

[tw5] Re: What's wrong with this list ..?

2021-03-07 Thread vinvi...@gmail.com
variable=tagname> > <$checkbox tiddler=<> tag=<> > <> > > > On Sunday, March 7, 2021 at 3:21:57 AM UTC-6 vinvi...@gmail.com wrote: > >> >> Hello, >> >> Can anyone tell me what's wrong with this code? >> >> >> *\def

[tw5] What's wrong with this list ..?

2021-03-07 Thread vinvi...@gmail.com
Hello, Can anyone tell me what's wrong with this code? *\define tagging() $(currentTiddler)$* *<$list filter=[search:title[,]] variable=tagname>* *<$checkbox tiddler=<> tag=<> > <>* ** It should show a list of all tiddlers that have a comma in the Title. With a checkbox you can tag

[tw5] Add a dropdown menu

2021-02-22 Thread vinvi...@gmail.com
This code lists the title of tiddlers tagged with (P) with a checkbox. After selection, the relevant tiddler will be tagged to the current tiddler. \define tagging() $(currentTiddler)$ <$list filter=[tag[(P)]] variable=tagname> <$checkbox tiddler=<> tag=<> > <>, What I want is to

[tw5] Fields in a specific order

2021-02-21 Thread vinvi...@gmail.com
Hello, Does anyone know if there is a way to display custom fields in a particular order? Thank you, -- 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

[tw5] Re: List [all[current]tags[]sort[title]has[m]] as a tag with the value from field "m" behind it

2021-02-15 Thread vinvi...@gmail.com
This works. Oh, my.. Seems like I'm starting to understand? :)) lol <$list filter="[all[current]tags[]sort[title]has[m]]"> {{||$:/core/ui/TagTemplate}} {{!!m}} Op maandag 15 februari 2021 om 10:04:06 UTC+1 schreef vinvi...@gmail.com: > Hello, > > Out of all tidd

[tw5] List [all[current]tags[]sort[title]has[m]] as a tag with the value from field "m" behind it

2021-02-15 Thread vinvi...@gmail.com
Hello, Out of all tiddlers where currentTiddler is tagged to: Only list the tiddler that have a field called "m". Show the title of that tiddler as a tagpill, and behind it the value of field "m". The code below works but does not show the content of field "m" behind the tagpill. <$list

[tw5] Re: List the textfield of tiddlers where the current tiddler is tagged to and have tag: A

2021-02-12 Thread vinvi...@gmail.com
I have found it, <$list filter="[all[current]tags[]]+[tag[A]]"> <$transclude/> Op donderdag 11 februari 2021 om 18:41:06 UTC+1 schreef vinvi...@gmail.com: > Hello, > > The following code: Lists the textfield of tiddlers tagged to > currentTiddler (Retain

[tw5] List the textfield of tiddlers where the current tiddler is tagged to and have tag: A

2021-02-11 Thread vinvi...@gmail.com
Hello, The following code: Lists the textfield of tiddlers tagged to currentTiddler (Retaining CSS) <$list filter="[all[current]tagging[]]"> <$transclude/> What I want is to list the textfield of tiddlers where the current tiddler is tagged to and have tag: A (Keeping the CSS style

[tw5] Re: Keep the CSS style even while Transcluding

2021-02-06 Thread vinvi...@gmail.com
Hello, How can I retain the correct colors in this "list-search filter"? : *<>* In textfield of: "template/list-search/textfield" : {{!!text}} Op donderdag 4 februari 2021 om 18:25:13 UTC+1 schreef vinvi...@gmail.com: > I found it .. Thank you, thank you, t

[tw5] Re: Keep the CSS style even while Transcluding

2021-02-04 Thread vinvi...@gmail.com
I found it .. Thank you, thank you, thank you. Functions perfectly.. Op donderdag 4 februari 2021 om 18:17:12 UTC+1 schreef vinvi...@gmail.com: > Thanks Mark S., > > I've Tiddler1 with tag (B), and the following code in the text-field is > displayed correctly: > > <$mac

[tw5] Re: Keep the CSS style even while Transcluding

2021-02-04 Thread vinvi...@gmail.com
; > > > Alternatively, the contents of the original tiddler could wrap themselves > in classes in the text. > > > Hello. I am <> > > > This would require you to write an additional CSS selector rule that would > recognize .alert- [attribute selector] as well as

[tw5] Keep the CSS style even while Transcluding

2021-02-03 Thread vinvi...@gmail.com
Hello, I've modified my styleSheet $:/plugins/kookma/shiraz/styles/ bs/alerts *Part of the CSS style:* /*Was taken from bootstrap 4.1.3*/ .alert { position: relative; padding: 0.75rem 1.25rem; margin-bottom: 1rem; border: 1px solid transparent; border-radius: 0.25rem; } /*BLUE

[tw5] Show title as tagpil in header of slider.

2021-01-21 Thread vinvi...@gmail.com
Hello, In this code: How can I make the title appear as a tag pill {{||$:/core/ui/TagTemplate}}, and the contents of field "title-description" behind it? \define tmpSearchTid() $:/temp/demo/qa/search-slider \define faqFilter() [tag[G]search:title {$(tmpSearchTid)$}] \define

[tw5] Transclude image if Tiddler has tag...

2021-01-19 Thread vinvi...@gmail.com
Hello, I want to transclude an image in the text field if the tiddler has tag: Tag "Cold" show image "Blue.png" Tag "Cool" show image "Aqua.png" " Tag "Neutral" show image "White.png" Tag "Warm" show image "Orange.png" Tag "Hot" show image "Red.png" How do I do that? Thank you, -- You

[tw5] Re: Adjust color if tiddler has tag

2021-01-11 Thread vinvi...@gmail.com
h-slider svg{ width: 0.8em; height: 0.8em; vertical-align: middle;} Op maandag 11 januari 2021 om 11:47:20 UTC+1 schreef vinvi...@gmail.com: > How do I do this? > > 1 Can I refer to a CSS style sheet in the code below? > > <$macrocall $name="details" > sum=&

[tw5] Re: Adjust color if tiddler has tag

2021-01-11 Thread vinvi...@gmail.com
ss:"", style:"") $sum$ $src$ \end 3 And how do I do that in the "right" way? Op zondag 10 januari 2021 om 17:13:46 UTC+1 schreef PMario: > Hi, > Try this: > https://tiddlywiki.com/#How%20to%20apply%20custom%20styles:%5B%5BHow%20to%20

[tw5] Re: Adjust color if tiddler has tag

2021-01-10 Thread vinvi...@gmail.com
021 om 11:33:22 UTC+1 schreef vinvi...@gmail.com: > Hello, > > (Shiraz plugin) > > <$macrocall $name="details" > sum="{{||$:/plugins/kookma/favorites/viewtoolbar}} > {{||$:/core/ui/TagTemplate}}" src=""" > Text here > ""&

[tw5] Adjust color if tiddler has tag

2021-01-10 Thread vinvi...@gmail.com
Hello, (Shiraz plugin) <$macrocall $name="details" sum="{{||$:/plugins/kookma/favorites/viewtoolbar}} {{||$:/core/ui/TagTemplate}}" src=""" Text here """ status="closed" style="background-color: #; color:aqua;" class="alert-success"/> I want to have the color ( color:aqua; ) automatically

[tw5] Re: Plain text without formatting after: <$list filter=....

2021-01-09 Thread vinvi...@gmail.com
set a variable to a fields value. > > The filter you use is realy only setting the current tiddler; so try this > > <$tiddler tiddler=<> > > <$transclude/> > > > or > <$transclude tiddler=<>/> > > On Friday, 8 January 2021 at 08

[tw5] Re: Plain text without formatting after: <$list filter=....

2021-01-07 Thread vinvi...@gmail.com
; {{!!text}}, which lets you explicitly specify whether you want it in block > or inline mode: > > <$list filter=<>> > <$transclude mode="block"/> > > > (See also https://tiddlywiki.com/#HTML%20in%20WikiText.) > > On Thursday, January 7, 20

[tw5] Prevent a button from overwriting tiddlers.

2021-01-07 Thread vinvi...@gmail.com
Hello, This button will overwrite an existing tiddler. How do I make sure that if the tiddler already exists it is numbered? If "Tiddler1" already exists, it becomes "Tiddler2". \define BUTTON-NAME() Enter > \define BUTTON-COLOR+SIZE() btn btn-link btn-sm \define BUTTON-TEXT-COLOR() color:

[tw5] Plain text without formatting after: <$list filter=....

2021-01-07 Thread vinvi...@gmail.com
Hello, \define LIST-DESCRIPTION() [[$(currentTiddler)$-description]] <$list filter=<>> {{!!text}} The above code works fine but shows the result in plain text. How can I prevent this? Thank you, -- You received this message because you are subscribed to the Google Groups "TiddlyWiki"

Re: [tw5] Button that read tags from a field.

2021-01-02 Thread vinvi...@gmail.com
; > >1. >><> > > > >1. \end ><> >2. Or you can just replace [[$(currentTiddler)$]] with >[] in your field content. Like so : ><$set name=mytags filter="[subfilter{!!tiddler-tag}]"> > > >

Re: [tw5] Button that read tags from a field.

2021-01-02 Thread vinvi...@gmail.com
gt; 5.1.23 just introduced the enlist-input operator, which is handy in > situations where your initial string comes from a previous filter > expression. > > Cheers, > -- Xavier > > > On Sat, Jan 2, 2021 at 3:52 PM vinvi...@gmail.com > wrote: > >> Hello, >>

[tw5] Re: Why are the tiddlers not proper sorted?

2021-01-02 Thread vinvi...@gmail.com
Did you save and reload? Op zaterdag 2 januari 2021 om 15:37:12 UTC+1 schreef schlechter...@gmail.com: > Hello, > > I did 'Adding a table of contents to the sidebar' ( > https://tiddlywiki.com/static/Adding%2520a%2520table%2520of%2520contents%2520to%2520the%2520sidebar.html > ) > > I created

[tw5] Button that read tags from a field.

2021-01-02 Thread vinvi...@gmail.com
Hello, I have a button to create a new tiddler. With\define TAGS() [[$(currentTiddler)$]] [[Tag 2]] [[Tag 3]], I can tag the new tiddler. \define BUTTON-NAME() Enter > \define BUTTON-COLOR+SIZE() btn btn-link btn-sm \define BUTTON-TEXT-COLOR() color: \define TIDDLER-TITLE()

[tw5] Tagging with drop down menu

2020-12-19 Thread vinvi...@gmail.com
Hello, I have this button to create a new tiddler: \define Tags() [[$(currentTiddler)$]] [[(EXTRA-TAG)]] <$button> <$action-sendmessage $message="tm-new-tiddler" title="TIDDLER-NAME" text="TEXT-FIELD-HERE" tags=<> field="FIELD-TEXT" field2="FIELD-TEXT" /> ''BUTTON-NAME'' This allows me

[tw5] Re: WidgetMessage: tm-new-tiddler with auto tagging

2020-12-19 Thread vinvi...@gmail.com
Thanks, this is what it ended up being; \define Tags() [[$(currentTiddler)$]] [[(EXTRA-TAG)]] <$button> <$action-sendmessage $message="tm-new-tiddler" title="TIDDLER-NAME" text="TEXT-FIELD-HERE" tags=<> field="FIELD-TEXT" field2="FIELD-TEXT" /> ''BUTTON-NAME'' Op donderdag 17 december

[tw5] WidgetMessage: tm-new-tiddler with auto tagging

2020-12-15 Thread vinvi...@gmail.com
Hello, I am using WidgetMessage: tm-new-tiddler. https://tiddlywiki.com/static/WidgetMessage%253A%2520tm-new-tiddler.html I have a Template tiddler called "Template1" with fields, tags etc. And a tiddler called "Template1Button" with this code: <$button message="tm-new-tiddler"

[tw5] Count tags under the condition of..

2020-12-13 Thread vinvi...@gmail.com
Hello, This code counts all tags from the current tiddler, but does not count the tag "C". <$count filter="[all[current]tags[]sort[title]] -[[C]]"/> But how can I count the number of tags from the current tiddler referring to all tiddlers with tag "CP"? Thank you, -- You received this

[tw5] Macro

2020-12-04 Thread vinvi...@gmail.com
Hello, I have a question about creating a macro. https://tiddlywiki.com/static/Macros%2520in%2520WikiText.html I have to make a lot of buttons in my wiki and I have this code for a button for creating a new tiddler; (It works fine.) `<$button><$action-sendmessage $message="tm-new-tiddler"

[tw5] Search tiddler title with tag (I) and show text field.

2020-11-26 Thread vinvi...@gmail.com
Hello, With the following code I transclude the text field of all tiddlers tagged with "(I)": <$list filter="[tag[(I)]]">{{!!text}} The following code gives me a searchable list of all tiddlers tagged with "(I)": (Shiraz plugin) <> I want the text field to be visible of all tiddlers tagged

[tw5] Re: Edit shadow tiddler

2020-11-15 Thread vinvi...@gmail.com
t a shadow tiddler and save it the > changed tiddler overrides the existing one, so yes you can just change the > code and save it. > > On Wednesday, November 11, 2020 at 3:27:35 PM UTC+1 vinvi...@gmail.com > wrote: > >> Hello, >> I am using the plugin "Alternate

[tw5] Edit shadow tiddler

2020-11-11 Thread vinvi...@gmail.com
Hello, I am using the plugin "Alternate tag fields". When I paste this code in the text field: <> I get to see tags read from the field: "ii-tags-special" of that tiddler. The tags appear as a tag pill but without a drop down menu. (Wikified?) How can I make the drop down menu appear when I

[tw5] Re: Differentiation

2020-10-26 Thread vinvi...@gmail.com
t;[[show-tags]tagging[]]"> > > > > > > ;List items tagged with [[(i)]] also `[all[]tag[(i)]]` > <$list filter="[[(i)]tagging[]]"> > > > > > > ;List all custom-tags one per line as link to create them as a tiddler, eg > to give them

[tw5] Re: Differentiation

2020-10-24 Thread vinvi...@gmail.com
ou. > > Tones > > > > On Saturday, 24 October 2020 01:19:14 UTC+11, vinvi...@gmail.com wrote: >> >> Hello, >> >> I've used code to be able to visualize it somewhat, but I can't get it to >> work. >> >> I hope I can clarify it with a

[tw5] Differentiation

2020-10-23 Thread vinvi...@gmail.com
Hello, I've used code to be able to visualize it somewhat, but I can't get it to work. I hope I can clarify it with an image: [image: Differentiation.png] Thank you, -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this

[tw5] Re: Transclude tiddler title or text field as a "combination".

2020-10-18 Thread vinvi...@gmail.com
e it all in with a healthy dose of salt ! > > Cheers ! > > On Thursday, October 15, 2020 at 6:39:31 AM UTC-3 vinvi...@gmail.com > wrote: > >> Hi, >> >> First of all, thank you, >> >> You are both right. I don't mean to lean back and let you do all the w

[tw5] Re: Transclude tiddler title or text field as a "combination".

2020-10-15 Thread vinvi...@gmail.com
or the same problem. > > Kind Regards, > Felicia > > > > On Tuesday, 13 October 2020 17:45:04 UTC+2, vinvi...@gmail.com wrote: >> >> Hello, >> >> Tiddlers a + b are tagged with tiddler 1. >> Tiddlers a + c + d are tagged with tiddler 2. >

[tw5] Transclude tiddler title or text field as a "combination".

2020-10-13 Thread vinvi...@gmail.com
Hello, Tiddlers a + b are tagged with tiddler 1. Tiddlers a + c + d are tagged with tiddler 2. Tiddlers a + b + c + d are tagged with (Ip). In tiddler (Ip), I want to show ALL letter combinations: (transclude tiddler titles as a link) POSSIBLE COMBINATIONS: a + b → tiddler 1 a + c + d → tiddler

[tw5] Re: Show content of a field in title

2020-10-04 Thread vinvi...@gmail.com
Thank you, Op zaterdag 3 oktober 2020 om 13:40:23 UTC+2 schreef Eric Shulman: > On Saturday, October 3, 2020 at 2:50:18 AM UTC-7, vinvi...@gmail.com > wrote: >> >> This shows the contents of a field: >> {{!! fieldname}} >> >> How to display the content of a

[tw5] Show content of a field in title

2020-10-03 Thread vinvi...@gmail.com
Hello, This shows the contents of a field: {{!! fieldname}} How to display the content of a field in the tiddler title? Can I use a code? Thank you, -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop

[tw5] Transclude tiddlers textfield by slection

2020-09-20 Thread vinvi...@gmail.com
Hello, Again I want to accost your immeasurable knowledge.. A simple list of terms with a check box. Selecting one or more of these check boxes will display the text field of the tiddlers that have a particular tag. Selecting 'Show all recipes' will transclude the text field of all tiddlers

[tw5] Re: Show tags of <> in text field

2020-09-20 Thread vinvi...@gmail.com
t; But you can do more, of course, you always can in tiddlywiki > > Tones > On Saturday, 19 September 2020 at 01:57:30 UTC+10 vinvi...@gmail.com > wrote: > >> Hello, >> >> How do I get the tags from the <> to appear in the text >> field? >> >>

[tw5] Re: Show tags of <> in text field

2020-09-18 Thread vinvi...@gmail.com
w="pop"/>* > > For easier use, save this to a tiddler with an easy title and transclude > this tiddler whenever needed. > > On Friday, September 18, 2020 at 8:57:30 AM UTC-7 vinvi...@gmail.com > wrote: > >> Hello, >> >> How do I get the tags from th

[tw5] Show tags of <> in text field

2020-09-18 Thread vinvi...@gmail.com
Hello, How do I get the tags from the <> to appear in the text field? How do I get the tags from the <> to appear in the text field, except for tag1, tag2 and tag3? Thank you, -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe

[tw5] Re: Code in code

2020-09-06 Thread vinvi...@gmail.com
Eric, I have solved the problem. Have upgraded to a new version of the plugin. It's working. Many thanks for your help Op zaterdag 5 september 2020 om 22:40:18 UTC+2 schreef Eric Shulman: > On Saturday, September 5, 2020 at 12:58:44 PM UTC-7, vinvi...@gmail.com > wrote: >> &

[tw5] Re: Code in code

2020-09-06 Thread vinvi...@gmail.com
r 5, 2020 at 12:58:44 PM UTC-7, vinvi...@gmail.com > wrote: >> >> I see what you mean .. Somehow that happened with cut and paste. I don't >> have it in my wiki that way. >> Here's what I've got so far: (The page title will now appear as a link, >> the rest sti

[tw5] Re: Code in code

2020-09-05 Thread vinvi...@gmail.com
Thanks, I see what you mean .. Somehow that happened with cut and paste. I don't have it in my wiki that way. Here's what I've got so far: (The page title will now appear as a link, the rest still doesn't work.) <$macrocall $name="details" sum="<$link/>" src=""">"""

[tw5] Re: Code in code

2020-09-05 Thread vinvi...@gmail.com
n: > On Friday, September 4, 2020 at 12:58:55 PM UTC-7, vinvi...@gmail.com > wrote: >> >> I have a piece of code that uses details macro from the Shiraz plugin. >> This is the piece of code: >> << details sum: "NameOfCurrentTiddlerHere" "Body

[tw5] Code in code

2020-09-04 Thread vinvi...@gmail.com
Hello, I have a piece of code that uses details macro from the Shiraz plugin. This is the piece of code: << details sum: "NameOfCurrentTiddlerHere" "BodyTextHere" class: "alert-primary" >> It all works fine, but how do I make the current tiddler title appear *automatically *with: