... Up till now I have had to always take the extra step of creating new tiddlers by a custom new tiddler button.
Go down to
NavigatorWidget.prototype.handleNewTiddlerEvent
Go further down below where it says:if(additionalFields && additionalFields.title) { title = additionalFields.title; }
Below these lines, insert:
if(typeof additionalFields == "undefined") {
additionalFields = {} ;
}
additionalFields.myfield = "123" ;
how to accomplish thismake a clone of the editbutton $:/core/ui/Buttons/edit  which is normally used for editing a tiddler in the story riverreplace the body text with the following (in bold the changes compared to the original edit button tiddler)-----<$reveal state="$:/temp/search" type="nomatch" text=""><$button message="tm-edit-tiddler" param={{$:/temp/search}} tooltip={{$:/language/Buttons/Edit/Hint}} aria-label={{$:/language/Buttons/Edit/Caption}} class=<<tv-config-toolbar-class>>><$list filter="[<tv-config-toolbar-icons>prefix[yes]]">{{$:/core/images/edit-button}}^^s^^</$list><$list filter="[<tv-config-toolbar-text>prefix[yes]]"><span class="tc-btn-text"><$text text={{$:/language/Buttons/Edit/Caption}}/></span></$list></$button></$reveal>----then add tag $:/tags/PageControls  Âremove the tagÂrename the tiddler to a unique namesave tiddler cloneÂthat's allNjoy wjam
--
You received this message because you are subscribed to a topic in the Google Groups "TiddlyWiki" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/tiddlywiki/meMFzwjLxXw/unsubscribe.
To unsubscribe from this group and all its topics, send an email to tiddlywiki+unsubscribe@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
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/267b516b-220d-45f3-bcde-56c8fd8e28d8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
additionalFields = {} ; "
Dave
--
You received this message because you are subscribed to a topic in the Google Groups "TiddlyWiki" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/tiddlywiki/meMFzwjLxXw/unsubscribe.
To unsubscribe from this group and all its topics, send an email to tiddlywiki+unsubscribe@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
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/9c5d493c-92c9-4b5f-b479-ecdf2204804f%40googlegroups.com.
To unsubscribe from this group and all its topics, send an email to tiddlywiki+...@googlegroups.com.
To unsubscribe from this group and all its topics, send an email to tiddlywiki+unsubscribe@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
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/79d0914e-a481-4f56-ab8a-4e2e1a9486a0%40googlegroups.com.