mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36:18 +00:00
8567c48be8
* Update BrowseWidget.tid Made sure all references to use of the `<$browse>` widget were changed to `<$browse/>` Which possibly caused this problem, now closed https://github.com/Jermolene/TiddlyWiki5/issues/7223 If not closed other widgets may work * To documentation standard Replaced `The content of the `<$browse>` widget is ignored.` `The content of the <<.wid BrowseWidget>> widget is ignored.` To restore documentation standards as per @Jermolene
36 lines
1.5 KiB
Plaintext
36 lines
1.5 KiB
Plaintext
caption: browse
|
|
created: 20131024141900000
|
|
modified: 20200421221304177
|
|
tags: Widgets
|
|
title: BrowseWidget
|
|
type: text/vnd.tiddlywiki
|
|
|
|
! Introduction
|
|
|
|
The browse widget displays an HTML file browser button that allows the user to choose one or more files to import. It sends a [[WidgetMessage: tm-import-tiddlers]] carrying a JSON representation of the tiddlers imported from the files up through its parents. This message is usually handled by the NavigatorWidget which adds the tiddlers to the store and updates the story to display them.
|
|
|
|
! Content and Attributes
|
|
|
|
The content of the <<.wid BrowseWidget>> widget is ignored.
|
|
|
|
|!Attribute |!Description |
|
|
|multiple |Set to "multiple" to select multiple file upload |
|
|
|deserializer |<<.from-version "5.1.15">> Optional name of deserializer to be used (by default the deserializer is derived from the file extension or type) |
|
|
|tooltip |Optional tooltip text |
|
|
|accept |<<.from-version "5.1.23">> Optional comma delimited [[list of file accepted extensions|https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#Unique_file_type_specifiers]] and/or MIME types |
|
|
|message |Optional override of widget message to be generated. The files will be passed in the JavaScript object `event.target.files` |
|
|
|param |Optional parameter to be passed with the custom message |
|
|
|
|
On iPhone/iPad choosing the multiple option will remove the ability to take photographs/videos directly into TiddlyWiki.
|
|
|
|
''e.g.''
|
|
|
|
```
|
|
<$browse/>
|
|
```
|
|
|
|
renders as:
|
|
|
|
<$browse/>
|
|
|