Hi again Mat
What i meant was: if you insert my field in your plugin’s .../main tiddler (and remove the focus from your own field) then my field actually works! (Tested on my iPhone in Safari.)
Put this in your main tiddler and you will see:
\define searchpath() $(currentTiddler)$!!searchwords
\define def() $(sw)$
<$list filter="[<currentTiddler>!has[searchwords]]">
<$button class="searchwords-toggle tc-btn-invisible"
set=<<searchpath>>
setTo=" " tooltip="Add searchwords">
{{$:/core/images/advanced-search-button}}
</$button>
</$list>
<$list filter="[<currentTiddler>has[searchwords]get[searchwords]]"
variable="sw">
<div class="searchwords-area tc-edit-tags ">
<span class="searchwords-info">?</span>
<$edit-text class="searchwords-fld" tag=input
field=searchwords
/>
<$button class="tc-btn-invisible searchwords-btn"
tooltip={{$:/language/EditTemplate/Field/Remove/Hint}}
aria-label={{$:/language/EditTemplate/Field/Remove/Caption}} >
<$action-deletefield $field="searchwords"/>
{{$:/core/images/delete-button}}
</$button>
</div>
<$edit-text field="searchwords" class="tc-titlebar tc-edit-texteditor" focus="true"/>
<style>.tc-edit-tags {padding-top: 1px; padding-bottom:1px;}</style>
</$list>
---
Cheers, Thomas