Bugfix: [ 1613848 ] Dependant fields are not processed...
Contributed by Teo Sarca
This commit is contained in:
parent
a7b2f86962
commit
279a9d27e2
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue