cancel
Showing results for 
Search instead for 
Did you mean: 

Hide row in Adobe Form

0 Kudos

Hi experts!

I am creating a form by Adobe forms with the Live Cycle Designer program.

I want to hide a table's row when a field is the same as the previous one.

Please provide your inputs and suggestions on how to write a java script for it and in which event I should write the script.

Thanks.

srilathau
Discoverer

Hi,

if we want to hide a row in adobe livecycle designer first take the cell address of which one is repeated and add the cell address in a row initialse

var row = xfa.resolveNode("cell address").rawValue;

if (row == null) {

this.presence = "hidden";

}

Accepted Solutions (0)

Answers (0)