cancel
Showing results for 
Search instead for 
Did you mean: 

To Remove or Hide a row in Address Window of a Adobe Form without Spacing :

Former Member
0 Kudos

Dear all,

I have a small issue that they don't want me to display blank lines or spaces for address without Street names instead I want to compress the row below up. Please inform if you have any commands or option with Adobe.

Thanks in Advance,

SriRam

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

your formcalc or java script..

something like:

if( this.rawValue == null )

{

this.presence = "invisible";

}

else

{

this.presence = "visible";

}

refer to this link.

http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b01c6b40-ce0f-2c10-e49f-8a54be4da...

Former Member
0 Kudos

Sowmya,

Thank you for your reference its very helpful I am not sure for some reason its not effective I need that row of the table to disappear pushing the below ones up so I wouldn't see any blank or space ones ( compress without the blank ones ) Please suggest alternative.

Thanks,

SriRam.

Former Member
0 Kudos

this one is the logic for exactly your purpose. thats how its done

if you are not sure, atleast you can restrict it in your interface code, delete the lines which you do not want be displayed

Answers (0)