> The last line of the TextField._onblur method says:
> this.setSelectionLength(0);
Probably relates to this method in TextField:
_ontabfocus : function() {
this.selectAll();
},
which is called from qx.event.handler.FocusHandler:
vNext.setFocused(true);
vNext._
The last line of the TextField._onblur method says:
this.setSelectionLength(0);
This prevents me from manipulating with selection from outside the text
field/textarea. I wonder - should it be there? My guess - it shouldn't.
Anyway, I'm using Mixin to patch that, though I believe, this line is
no