Hidding table row - presence = "hidden" not working
Hi all,
I need to hide a row from the table based on a condition and all the suggestions I found says to use .presence = "hidden", but unfortunately only the line content is being hidden and not the entire row.
This is the JavaScript I'm using:
data.#pageSet[0].Page1.BasicData::initialize - (JavaScript, client)
if ( $record.V_FLAG.value != "X" ) {
this.resolveNode("Page1.BasicData.Table1.Line2").presence = "hidden";
}
I also tried the following alternatives:
if ( $record.V_FLAG.value != "X" ) {
this.resolveNode("Page1.BasicData.Table1.Line2.Cel1").presence = "hidden";
}
if ( $record.V_FLAG.value != "X" ) {
this.Table1.Line2.presence = "hidden";
}
if ( $record.V_FLAG.value != "X" ) {
this.Table1.Line2.Cel1.presence = "hidden";
}
I appreciate any help.

