* [ 1651113 ] Field of completed document allow modification

This commit is contained in:
Heng Sin Low 2007-02-03 07:26:52 +00:00
parent 5e09f96ff4
commit 91b1803b7b
1 changed files with 4 additions and 4 deletions

View File

@ -676,8 +676,8 @@ public class GridController extends CPanel
if (msg.length() > 0)
ADialog.error(m_WindowNo, this, msg);
}
if (col >= 0)
dynamicDisplay(col);
//if (col >= 0)
dynamicDisplay(col);
} // dataStatusChanged
@ -808,7 +808,7 @@ public class GridController extends CPanel
if (!m_mTab.isOpen())
return;
// Selective
if (col != 0)
if (col > 0)
{
GridField changedField = m_mTab.getField(col);
String columnName = changedField.getColumnName();
@ -879,7 +879,7 @@ public class GridController extends CPanel
}
}
} // all components
log.config(m_mTab.toString() + " - fini - " + (col==0 ? "complete" : "seletive"));
log.config(m_mTab.toString() + " - fini - " + (col<=0 ? "complete" : "seletive"));
} // dynamicDisplay
/**