On Mar 6, 9:42 pm, rocker909 <[email protected]> wrote: > Is there a plugin which I can use to add new text to a tiddler without > going into edit mode for the whole tiddler?
http://www.TiddlyTools.com/#QuickNotePlugin http://www.TiddlyTools.com/#QuickNotePluginInfo To add text to the current tiddler, embed: <<quickNote tiddler:here>> in the desired tiddler. Then, when viewing that tiddler, the QuickNotePluginPanel form is displayed for quick input without going into edit mode. To add the macro to ALL tiddlers automatically, edit the [[ViewTemplate]] and add: <div macro="quickNote tiddler:here"></div> You can customize the default HTML form definition in [[QuickNotePluginPanel]] to hide any unwanted input fields. For example, you can hide the "title" and "tags" inputs so that only the "save" button and text input areas are displayed: ---------------------------- <html><nowiki><form class="quickNote" style="display:inline;margin: 0;padding:0;white-space:nowrap;"> <input type=hidden name="dateformat" disabled value=""> <input type=hidden name="target" disabled value=""> <input type=hidden name="title" disabled value="" title="title for new tiddler" style="width:50%"> <input type=hidden name="tags" value="" title="tags for new tiddler" style="width:40%"> <input type=button value="save" style="width:8%" onclick="config.macros.quickNote.saveNote(this.form); return false;"><br> <textarea name="txt" rows="5" cols="60" style="width:100%"></textarea> </form></html> ----------------------------- enjoy, -e Eric Shulman TiddlyTools / ELS Design Studios HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"... http://www.TiddlyTools.com/#Donations Professional TiddlyWiki Consulting Services... Analysis, Design, and Custom Solutions: http://www.TiddlyTools.com/#Contact -- 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 http://groups.google.com/group/tiddlywiki?hl=en. For more options, visit https://groups.google.com/groups/opt_out.

