Folks,
I am using the edit-text widget as follows;
<$edit-text tiddler=tiddlername field=fieldname focus=yes/>
- This works in a tiddler body, the text is selected and I can use my mouse to position the cursor, select text and ctrl-a to select all again if needed
Now I am building, below is a selective edit non-working sample inside a procedure
<$list filter="[<popup-tiddler>!has[title]]" variable=~>
<$transclude tiddler=<<reference.tiddler>> field=<<reference.field>>/> <<edit-it-button>>
</$list>
<$list filter="[<popup-tiddler>has[title]]" variable=~>
<$edit-text tiddler=<<reference.tiddler>> field=<<reference.field>> focus=yes/> <<view-it-button>>
</$list>
The problem
In this and other cases when I use the edit-text widget something causes the use of the mouse to fail and rather than select or position the cursor the mouse click results in the popup being reversed and the editing stops.
- I can NOT use my mouse to position the cursor, select text and ctrl-a to select all again if needed
- As you see from my above code the popup buttons are defined as
<<edit-it-button>>
and<<view-it-button>>
and they are separate from the edit widget. - Why would the edit respond as if it was the button being clicked?
Here is the code for my button(s).
\procedure edit-it-button() <$button tooltip="edit this value" popup=<<popup-tiddler>> class="tc-btn-invisible">{{$:/core/images/edit-button}}</$button>
I would appreciate some advice in this one as it is a persistent problem I come across.