Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

Adobe Form Subform Hide/Visible Problem

Avatar

Former Community Member

Hi All,

We have a subfrom visibility(hide/insivible)  problem on adobe form.

We designed it on SAP with Adobe Livecyle Designer 11.0.

PROJE_SF has internal table binding.

I have two flags which manuplates the visibility for each subform.

when we fill the flag with 'X' we can display the subform but, next record when internal table work area flag is "space", we dont hide this subform.

Adobe Form Template:

adobe_design.jpg

Adobe Form Print Template:

Adobe Form.jpg

I wrote this JS code on docready JS event.

I've added subfrom flag into the form I want to hide.

if( data.PROJE_SF.AROMALAR.AROMA_SF.ARM_FLAG.isNull )

{

data.PROJE_SF.AROMALAR.AROMA_SF.presence               = "hidden";

data.PROJE_SF.AROMALAR.AROMA_SF.AROMA_PYP_SF  = "hidden";

data.PROJE_SF.AROMALAR.AROMA_SF.AROMA_ITEM      = "hidden";

}

else

{

data.PROJE_SF.AROMALAR.AROMA_SF.presence              = "visible";

data.PROJE_SF.AROMALAR.AROMA_SF.AROMA_PYP_SF = "visible";

data.PROJE_SF.AROMALAR.AROMA_SF.AROMA_ITEM     = "visible";

}

Please let me know if any corrections or other options to do same.

Thank you some much,

Regards,

2 Replies

Avatar

Level 10

Hi there,

you are trying to change 3 different object's presence to hidden or visible, but you only have the property presence on the first object, you do not specify the presence property on the other two objects...

hope this help

Avatar

Former Community Member

Hi Magus069,

Thank you for help and reply, but when I passed three flag for each subform, it was not solved my problem.

Do you have another idea for this issue ?

Thank you some much,

Regards,

pic1.jpg