修复动态块在tab时没有选中全部

pull/649615/MERGE
ChenX 7 years ago
parent 2bd87a62e0
commit fa21457e1f

@ -39,6 +39,7 @@ export class DynamicInputManage
static GetManage() static GetManage()
{ {
if (!this.manage) this.manage = new DynamicInputManage(); if (!this.manage) this.manage = new DynamicInputManage();
window["mg"] = this.manage;
return this.manage; return this.manage;
} }
// ----------------------单例接口End---------------------- // ----------------------单例接口End----------------------
@ -86,6 +87,7 @@ export class DynamicInputManage
{ {
case KeyBoard.Tab: case KeyBoard.Tab:
e.preventDefault(); e.preventDefault();
e.stopPropagation();
this.NextFocus(); this.NextFocus();
break; break;
case KeyBoard.Enter: case KeyBoard.Enter:

Loading…
Cancel
Save