IDEMPIERE-2170:About direct input to search field

This commit is contained in:
hieplq 2014-09-05 20:05:34 +07:00
parent 1ec73fb1fe
commit c607a29f31
1 changed files with 2 additions and 1 deletions

View File

@ -400,7 +400,7 @@ public class InfoWindow extends InfoPanel implements ValueChangeListener, EventL
} }
private void processQueryValue() { private void processQueryValue() {
onUserQuery();//IDEMPIERE-1979 Add by Hideaki Hagiwara isQueryByUser = true;
for (int i = 0; i < identifiers.size(); i++) { for (int i = 0; i < identifiers.size(); i++) {
WEditor editor = identifiers.get(i); WEditor editor = identifiers.get(i);
editor.setValue(queryValue); editor.setValue(queryValue);
@ -431,6 +431,7 @@ public class InfoWindow extends InfoPanel implements ValueChangeListener, EventL
} else if (!splitValue) { } else if (!splitValue) {
editors.get(0).setValue(queryValue); editors.get(0).setValue(queryValue);
} }
isQueryByUser = false;
} }
private boolean loadInfoDefinition() { private boolean loadInfoDefinition() {