IDEMPIERE-877 Zk: Remove unnecessary refresh from WTableDirEditor
This commit is contained in:
parent
faae2ab46e
commit
759583ebb0
|
@ -542,8 +542,14 @@ public final class MLookup extends Lookup implements Serializable
|
|||
if (cacheLocal && !saveInCache && directValue != null)
|
||||
{
|
||||
if (m_lookupDirect == null)
|
||||
{
|
||||
m_lookupDirect = new HashMap<Object,Object>();
|
||||
m_lookupDirect.put(key, directValue);
|
||||
}
|
||||
else if (!m_lookupDirect.containsKey(key))
|
||||
{
|
||||
m_lookupDirect.clear();
|
||||
m_lookupDirect.put(key, directValue);
|
||||
}
|
||||
}
|
||||
m_hasInactive = true;
|
||||
return directValue;
|
||||
|
|
|
@ -167,7 +167,8 @@ ContextMenuListener, IZoomableEditor
|
|||
//no need to refresh readonly lookup
|
||||
if (isReadWrite())
|
||||
lookup.refresh();
|
||||
refreshList();
|
||||
else
|
||||
refreshList();
|
||||
}
|
||||
|
||||
if (gridField != null)
|
||||
|
@ -265,11 +266,17 @@ ContextMenuListener, IZoomableEditor
|
|||
getComponent().setValue(value);
|
||||
if (!getComponent().isSelected(value))
|
||||
{
|
||||
if (isReadWrite() && lookup != null)
|
||||
lookup.refresh();
|
||||
Object curValue = oldValue;
|
||||
oldValue = value;
|
||||
refreshList();
|
||||
|
||||
if (isReadWrite() && lookup != null)
|
||||
{
|
||||
lookup.refresh();
|
||||
}
|
||||
else
|
||||
{
|
||||
refreshList();
|
||||
}
|
||||
|
||||
//still not in list, reset to zero
|
||||
if (!getComponent().isSelected(value))
|
||||
|
@ -349,7 +356,7 @@ ContextMenuListener, IZoomableEditor
|
|||
}
|
||||
if (!found && oldValue != null)
|
||||
{
|
||||
NamePair pair = lookup.getDirect(oldValue, false, false);
|
||||
NamePair pair = lookup.getDirect(oldValue, false, true);
|
||||
if (pair != null) {
|
||||
if (pair instanceof KeyNamePair) {
|
||||
int key = ((KeyNamePair)pair).getKey();
|
||||
|
@ -449,7 +456,8 @@ ContextMenuListener, IZoomableEditor
|
|||
|
||||
if (isReadWrite())
|
||||
lookup.refresh();
|
||||
refreshList();
|
||||
else
|
||||
refreshList();
|
||||
if (curValue != null)
|
||||
{
|
||||
setValue(curValue);
|
||||
|
|
Loading…
Reference in New Issue