Reverting these two lines from revision 4185
They are not working with latest change of revision 4194
This commit is contained in:
parent
529901a54d
commit
74db7ec57a
|
@ -498,8 +498,7 @@ public class VLookup extends JComponent
|
||||||
if (notFound) // <key>
|
if (notFound) // <key>
|
||||||
{
|
{
|
||||||
m_value = null;
|
m_value = null;
|
||||||
if (!m_inserting)
|
actionCombo (null); // data binding
|
||||||
actionCombo (null); // data binding
|
|
||||||
log.fine(m_columnName + "=" + value + ": Not found");
|
log.fine(m_columnName + "=" + value + ": Not found");
|
||||||
}
|
}
|
||||||
// we have lookup
|
// we have lookup
|
||||||
|
@ -518,8 +517,7 @@ public class VLookup extends JComponent
|
||||||
if (m_combo.getSelectedItem() == null)
|
if (m_combo.getSelectedItem() == null)
|
||||||
{
|
{
|
||||||
log.info(m_columnName + "=" + value + ": not in Lookup - set to NULL");
|
log.info(m_columnName + "=" + value + ": not in Lookup - set to NULL");
|
||||||
if (!m_inserting)
|
actionCombo (null); // data binding (calls setValue again)
|
||||||
actionCombo (null); // data binding (calls setValue again)
|
|
||||||
m_value = null;
|
m_value = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue