Avatar

Correct answer by
Level 5

Why you use the action builder?

What would you like to create?

You cold use the following - the subform is visible if the textfield is empty - not empty the subform is hidden:

if(PathToTextfield.NameTextobject.rawValue == null)

{

    PathToSubform.NameSubform.presence = "visible";

}else

{

PathToSubform.NameSubform.presence = "hidden";

}

You could copy this script in the EXIT-event of your textfield.

You will find the scripteditor about "windows" | "scripteditor"

Then you select the event (Anzeigen = event (this is a german LCD screenshot))

subform.jpg

Hope it will helps you,

Mandy

View solution in original post