Changing text with set: set( {'text':''} ) doesn't work on all elements.
set( {'text':''} )
Known to not work on these: <option> <input> <submit> <textarea>.
<option> <input> <submit> <textarea>
As a workaround manipulate the node directly through _node, f.ex. realisation._node.value.
realisation._node.value
Log in to post a comment.