2014-08-11 12:17:11 +00:00
|
|
|
created: 20140811112133701
|
2014-11-26 11:22:20 +00:00
|
|
|
modified: 20141107142803042
|
2014-09-11 14:52:47 +00:00
|
|
|
tags: Messages
|
2014-08-28 20:43:44 +00:00
|
|
|
title: WidgetMessage: tm-modal
|
2014-08-15 09:06:19 +00:00
|
|
|
type: text/vnd.tiddlywiki
|
2014-09-10 23:06:19 +00:00
|
|
|
caption: tm-modal
|
2014-08-11 12:17:11 +00:00
|
|
|
|
|
|
|
The modal message displays a specified tiddler in a modal overlay that dims the main page. It requires the following properties on the `event` object:
|
|
|
|
|
|
|
|
|!Name |!Description |
|
|
|
|
|param |Title of the tiddler to be displayed |
|
2014-11-26 11:22:20 +00:00
|
|
|
|paramObject |Hashmap of variables to be provided to the modal |
|
|
|
|
|
|
|
|
The "currentTiddler" variable is set to the title of the modal tiddler, but can be overridden by specifying a different value in `paramObject`.
|
2014-08-11 12:17:11 +00:00
|
|
|
|
|
|
|
The modal message is usually generated with the ButtonWidget. The modal message is handled by the TiddlyWiki core.
|
2014-11-26 11:22:20 +00:00
|
|
|
|
|
|
|
! Example
|
|
|
|
|
|
|
|
Here is an example of displaying a modal and passing parameters to it:
|
|
|
|
|
|
|
|
<$macrocall $name='wikitext-example-without-html'
|
|
|
|
src='Your name: <$edit-text tiddler="$:/temp/yourName" tag="input" default="Your name"/>
|
|
|
|
|
|
|
|
Your message:
|
|
|
|
<$edit-text tiddler="$:/temp/yourMessage" default="Your message"/>
|
|
|
|
|
|
|
|
<$button>
|
|
|
|
<$action-sendmessage $message="tm-modal" $param="SampleModal" yourName={{$:/temp/yourName}} yourMessage={{$:/temp/yourMessage}}/>
|
|
|
|
Click me!
|
|
|
|
</$button>'/>
|
|
|
|
|