Bugfix: [ 1613848 ] Dependant fields are not processed...

Contributed by Teo Sarca
This commit is contained in:
trifonnt 2006-12-12 13:17:30 +00:00
parent a7b2f86962
commit 279a9d27e2
1 changed files with 2 additions and 1 deletions

View File

@ -669,7 +669,8 @@ public class GridController extends CPanel
// Process Callout
GridField mField = m_mTab.getField(col);
if (mField != null && mField.getCallout().length() > 0)
// Contribution from Teo Sarca; [ 1613848 ] Dependant fields are not processed...
if (mField != null && (mField.getCallout().length() > 0 || m_mTab.hasDependants(mField.getColumnName())))
{
String msg = m_mTab.processFieldChange(mField); // Dependencies & Callout
if (msg.length() > 0)