Because of the way TW renders, changing a field of a tiddler that you are already in will not be smooth.
But if you put <$range field="range1" min="1" max="100" default="1" increment="1"/> <$view field="range1"> (notice the fix on the view widget) into a tiddler and tag it as $:/tags/ViewTemplate then it will appear on every tiddler, and the motion will be smooth. Of course you do not want the template to apply to every tiddler, so you will need to wrap your rang widget in a list widget that specifies some condition: <$list filter="[all[current]tag[Test]]"> <$range field="range1" min="1" max="100" default="1" increment="1"/><$view field="range1"/> </$list> I don't understand what you mean in issue #3. Good luck On Sunday, June 23, 2019 at 6:38:11 AM UTC-7, M. Roest wrote: > > I have a few issues. > > 1) > ... resolved > > 2) > I did download version 5.19 to see if the range widget suited my needs. > There is one issue with it: the following code kind of works but is not as > smooth as if I would store the data in a new tiddler. > > <$range field="range1" min="1" max="100" default="1" increment="1"/> > <$view field="range1"> > > I want to store it in a field because I want every tiddler to contain its > own data. It makes it for easier parsing once I want to visualize or > calculate some statistics on my data. > > 3) > *Edit:* solved with <$transclude field="range1"> > > I still find it weird that <$view field="range1"> does not display the > remainder of the page. > > On Saturday, June 22, 2019 at 2:18:56 PM UTC+2, TonyM wrote: >> >> M >> >> Html can often be used to great effect in tiddlywiki however if you want >> to store your result, do what you normally do with html javascript, you >> need to use the widgets. The primary reason as I see it is the widgets >> honor the tiddlywiki refresh and relationships. Many of the widgets >> actually cater for html tags. Almost anything you would do in html is >> possible so I recommend widening your search in tiddlywiki.com or these >> forums. >> >> If you find something you can't do ask us for it. The worst case is a >> plugin or macro can be built to do it. >> >> The details tag works as does a plugin that gives us the <$details widget. >> >> If Jeds answer was not what you were looking for, explain here what >> functionaly you are after and we can help. >> >> Regards >> Tony >> >> -- 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/tiddlywiki. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/0d3cde59-4187-49a0-bcc1-fe06a6057cd2%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

