Expand my Community achievements bar.

Learn about Edge Delivery Services in upcoming GEM session

referencing table rows question

Avatar

Level 4
I'm getting a malformed SOM expression error from the following statement:

for(j=0; j <3; j++)

{xfa.resolveNode("form1.Table1.Row1[j].Cell3").mandatory = "disabled";}}



I figure I'm not referencing the index of the table row correctly but I'm not finding any examples to mimic. Any help greatly appreciated!
1 Reply

Avatar

Former Community Member
The j cannot be resolved in that expression becuae it is enclosed in the string. Write the expression this way:



xfa.resolveNode("form1.Table1.Row1[" + j + "].Cell3").mandatory = "disabled