<$edit-text tiddler="mytiddler" field="mydate" type="date"/>
--
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 tiddlywiki+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/6e2131ba-c534-40d8-8011-3a7b97f564bc%40googlegroups.com.
Hi MohammadThe trouble with some of these HTML5 features is that they are not consistently implemented across browsers. Input elements of type date have particularly poor support because they don’t work in IE or Safari:
https://caniuse.com/#search=input-dateSo, in practice, almost all sites nowadays implement their own date pickers (and colour pickers, sliders etc), so that they can guarantee consistent behaviour and appearance.Best wishesJeremy
On 1 Aug 2019, at 16:40, Mohammad <mohamma...@gmail.com> wrote:
Openand create a new tiddler and paste the below script<$edit-text tiddler="mytiddler" field="mydate" type="date"/>This simply lets you to set mydate field in mytiddler to a selected date!Look at the mytiddler tiddler and check the mydate fieldIs this a recommended procedure to have an html5 datapicker in TW?--Mohammad--
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 tiddl...@googlegroups.com.
Hi Mohammad