Revert Revision: 917
Revert -> Bugfix: [ 1613848 ] Dependant fields are not processed... This patch opened the bug ID 1617651 -> Unable to save Contact/User must be more tested
This commit is contained in:
parent
569bd9c12e
commit
146e766483
|
@ -669,8 +669,7 @@ public class GridController extends CPanel
|
||||||
|
|
||||||
// Process Callout
|
// Process Callout
|
||||||
GridField mField = m_mTab.getField(col);
|
GridField mField = m_mTab.getField(col);
|
||||||
// Contribution from Teo Sarca; [ 1613848 ] Dependant fields are not processed...
|
if (mField != null && mField.getCallout().length() > 0)
|
||||||
if (mField != null && (mField.getCallout().length() > 0 || m_mTab.hasDependants(mField.getColumnName())))
|
|
||||||
{
|
{
|
||||||
String msg = m_mTab.processFieldChange(mField); // Dependencies & Callout
|
String msg = m_mTab.processFieldChange(mField); // Dependencies & Callout
|
||||||
if (msg.length() > 0)
|
if (msg.length() > 0)
|
||||||
|
|
Loading…
Reference in New Issue