Expand my Community achievements bar.

Table row value to decide presence of another row

Avatar

Former Community Member
Hello,



I have a table. One of the cells is a dropdown list with 'Yes', 'No' and 'Not Applicable'.



When 'No' is selected in Row2.Cell1(i.e the dropdownlist cell), the same cell in next row (Row3.cell1) presence should be invisible.



I have written the following javascript in **Change** event of Row2.Cell1, but it doesnt work.



if (form1.Table21..Row2.Cell1.rawValue == "No")

form1.Table21.Row3.cell1.presence = "visible";

else

form1.Table21.Row3.cell1.presence = "invisible";



Please help me.
0 Replies