Commit f0ebad68 authored by Oleg Korshul's avatar Oleg Korshul

ввод

parent 43150caf
...@@ -94,11 +94,11 @@ ...@@ -94,11 +94,11 @@
}, 10); }, 10);
}, },
move : function() move : function(x, y)
{ {
var oTarget = document.getElementById(this.TargetId); var oTarget = document.getElementById(this.TargetId);
var xPos = parseInt(oTarget.style.left); var xPos = x ? x : parseInt(oTarget.style.left);
var yPos = parseInt(oTarget.style.top) + parseInt(oTarget.style.height); var yPos = (y ? y : parseInt(oTarget.style.top)) + parseInt(oTarget.style.height);
this.HtmlDiv.style.left = xPos + "px"; this.HtmlDiv.style.left = xPos + "px";
this.HtmlDiv.style.top = yPos + this.HtmlAreaOffset + "px"; // еще бы сдвинуться на высоту строки this.HtmlDiv.style.top = yPos + this.HtmlAreaOffset + "px"; // еще бы сдвинуться на высоту строки
...@@ -186,7 +186,7 @@ ...@@ -186,7 +186,7 @@
this.Listener.Begin_CompositeInput(); this.Listener.Begin_CompositeInput();
}, },
onCompositionUpdate : function(e) onCompositionUpdate : function(e, isLockTarget)
{ {
var _old = this.compositionValue.splice(0); var _old = this.compositionValue.splice(0);
this.checkCompositionData(e.data); this.checkCompositionData(e.data);
...@@ -205,7 +205,9 @@ ...@@ -205,7 +205,9 @@
} }
} }
if (isLockTarget !== false)
this.lockTarget(); this.lockTarget();
if (!_isEqual) if (!_isEqual)
this.Listener.Replace_CompositeText(this.compositionValue); this.Listener.Replace_CompositeText(this.compositionValue);
...@@ -214,6 +216,7 @@ ...@@ -214,6 +216,7 @@
onCompositionEnd : function(e) onCompositionEnd : function(e)
{ {
this.onCompositionUpdate(e, false);
this.Listener.Set_CursorPosInCompositeText(1000); // max this.Listener.Set_CursorPosInCompositeText(1000); // max
this.clear(); this.clear();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment