Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi,
i have a requirement that there are 4 text objects and one list box,i want to do hide/show for the text objects depending upon the fields which i have selected in the list box. please help me out.
Thanks
Payal
Please check the attachment
Hi pgrs4219,
Here an example, you need to use the Show Conditional on the Texbox properties.
Best regards,
Agustin.
hi
Thanks for replying back.if i do this it is hiding all the time.not displaying for corresponding field.
In the layout tab you can use one of
Field='A'
SubStringCount(Field, 'A')
GetFieldSelections(Field)='A'
PFA
Hi,
You can try in the
Text Object Properties -> Layout -> Conditional and give below expressions
=Only(FieldName) = 'Value1' for Text object 1
=Only(FieldName) = 'Value2' for Text object 2
=Only(FieldName) = 'Value3' for Text object 3
=Only(FieldName) = 'Value4' for Text object 4
Note: Change above values accordingly.
Regards,
Jagan.
Try this,
Got to Layout tab of each Text Object and set below property,
with expression as =GetFieldSelections(Categroy)='A' for A text object. Repeat the same condition for B,C,D Text Object as well
I think, this will help you.