mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-07 18:39:57 +00:00
a33e94c4ee
* Correct tag names. Add missing tags * Update _muritest_ by Simon Huber.tid Auto PR didn't include this. * Update _TiddlyServer_ by Matt Lauber.tid Fixing tag
29 lines
859 B
Plaintext
29 lines
859 B
Plaintext
created: 20200131144828713
|
|
modified: 20211113011036840
|
|
tags: ActionCreateTiddlerWidget Widgets
|
|
title: ActionCreateTiddlerWidget Example 2
|
|
type: text/vnd.tiddlywiki
|
|
|
|
\define testCreate()
|
|
<$action-createtiddler $basetitle={{$:/language/DefaultNewTiddlerTitle}} $overwrite="yes"/>
|
|
\end
|
|
|
|
This example will use the base title defined in [[$:/language/DefaultNewTiddlerTitle]].
|
|
|
|
It will overwrite the tiddler, if the button is clicked several times.
|
|
|
|
```
|
|
\define testCreate()
|
|
<$action-createtiddler $basetitle={{$:/language/DefaultNewTiddlerTitle}} $overwrite="yes"/>
|
|
\end
|
|
|
|
<$button actions=<<testCreate>> >
|
|
Create Tiddler
|
|
</$button>
|
|
```
|
|
|
|
<$button actions=<<testCreate>> >
|
|
<$action-setfield $tiddler="$:/state/tab/sidebar--595412856" text="$:/core/ui/SideBar/Recent"/>
|
|
Create Tiddler
|
|
</$button> - Clicking this button, will also open the Right sidebar: Recent tab
|