This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
~Jennifer Nimjumiverakoi 10.Mar.07 01:28 AM a Web browser Domino Designer 6.5.4 AIX
I'm trying to determine why a field on a form that's displayed on the web is not displaying its expected value. Here's the scenario:
There are two text fields on a form - FieldA and FieldB. Both are Computed for Display. The formula for FieldA is 'FieldA'. The formula for FieldB is as follows:
@If( FieldA != ""; @Return(@True); @False);
If FieldA is assigned a non-null value through a webQueryOpen agent, FieldB displays '0' (False).
FieldB is below and to the right of FieldA and should therefore be able to evaluate FieldA. I've tried various scenarios, including making both fields Computed and setting their properties to 'Compute after validation', but FieldB always displays '0' (False).
I'd appreciate any ideas on why FieldB is not displaying '1' (True) when FieldA is assigned a non-null value through a webQueryOpen agent.