IDEMPIERE-5074 Alt+Left Alt+Right not working when focus is lost (#1052)
This commit is contained in:
parent
08c7775f77
commit
f067725e33
|
@ -1305,7 +1305,11 @@ public abstract class AbstractADWindowContent extends AbstractUIPart implements
|
||||||
}
|
}
|
||||||
else if (event.getName().equals(ON_FOCUS_DEFER_EVENT)) {
|
else if (event.getName().equals(ON_FOCUS_DEFER_EVENT)) {
|
||||||
HtmlBasedComponent comp = (HtmlBasedComponent) event.getData();
|
HtmlBasedComponent comp = (HtmlBasedComponent) event.getData();
|
||||||
comp.focus();
|
if (comp instanceof ADTabpanel)
|
||||||
|
((ADTabpanel)comp).focusToFirstEditor(false);
|
||||||
|
else
|
||||||
|
comp.focus();
|
||||||
|
//
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue