Hi,
if the filed value in not available then that space to be hidden for that
Goto the fields make it wrapin subform and make formlayout.
If($.isNull) then
$.presense=hidden
else
$.presense="visible"
endif
u can utilize like this.
$.fieldname="hidden"
other wise fild names also
if ( Subform11.NumericField5.value == "-1" ) then
Subform11.NumericField5.presence = "hidden"
Subform11.presence = "hidden"
else
Subform11.NumericField5.presence = "visible"
Subform11.presence = "visible"
endif
Intialization event should work.
RawValue contains before formated value.
Scenario 1 : Depending on a specific value a field has to be hidden.
a) Select the field you want to hide depending on a condition. (On the layout designer)
b) Choose FormCalc as language and Form:Ready as event. (On the script editor)
c) Scripting:
if ( $.rawValue == .presence = hidden
endif
u can do like this and please close the previos threads table and image
Helpful answers please reward.
Thanks ,
Lohi.
Message was edited by:
Lohitha M
Message was edited by:
Lohitha M
Add a comment