mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-02 08:06:17 +00:00
27 lines
642 B
Plaintext
27 lines
642 B
Plaintext
|
created: 20200131142401129
|
||
|
modified: 20200131152023958
|
||
|
tags: ActionCreateTiddlerWidget
|
||
|
title: ActionCreateTiddlerWidget Example 1
|
||
|
type: text/vnd.tiddlywiki
|
||
|
|
||
|
\define testCreate()
|
||
|
<$action-createtiddler />
|
||
|
\end
|
||
|
|
||
|
This example will create "New Tiddler", "New Tiddler 1", " New Tiddler 2" and so on
|
||
|
|
||
|
```
|
||
|
\define testCreate()
|
||
|
<$action-createtiddler />
|
||
|
\end
|
||
|
|
||
|
<$button actions=<<testCreate>> >
|
||
|
Create Tiddler
|
||
|
</$button>
|
||
|
```
|
||
|
|
||
|
<$button actions=<<testCreate>> >
|
||
|
<$action-setfield $tiddler="$:/state/tab/sidebar-1206596165" text="$:/core/ui/SideBar/Recent"/>
|
||
|
Create Tiddler
|
||
|
</$button> - Clicking this button, will also open the Right sidebar: Recent tab
|