Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Button to hide and unhide rows in Adobe Livecycle

Avatar

Level 3

I have table in Adobe Livecycle I want button when I press to unhide two rows and if I need two more and .... And I need same button to hide two rows.

Thank you.

0 Replies

Avatar

Level 8

Use the 'presence' property. If your row is a static row (ie you see it in design time), then simply reference the name: myRow.presence="hidden" or myRow.presence="visible".

However, if it's a dynamic row (ie you add them at run time), then you have to reference the name of the row along with its index: myRow.all.item(3).presence="hidden". The index of a row is zero-based, that means the first row is 0 and in my example row 3 is the 4th from the top.

Kyle