IDEMPIERE-1068 Information in QuickEntry window isn't displayed as it is in ADWindow

This commit is contained in:
Richard Morales 2013-06-24 22:10:26 -05:00
parent af6e216036
commit f84d93036b
1 changed files with 6 additions and 2 deletions

View File

@ -301,8 +301,12 @@ public class WQuickEntry extends Window implements EventListener<Event>, ValueCh
int idxt = quickTabs.indexOf(field.getGridTab());
PO po = quickPOs.get(idxt);
Object value = po.get_Value(field.getColumnName());
editor.setValue(value);
field.setValue(value, false);
if (value != null) {
editor.setValue(value);
field.setValue(value, false);
} else {
editor.dynamicDisplay();
}
initialValues.add(editor.getValue());
}