I have a table that is a summary of other choices made throughout the document. For specific check boxes in the form, there is a defined phrase that needs to be sent to a new row in the summary table.
The general idea is that for checkbox:
form1.sfMain.sfContent.tableC2.Row1.cbC2b6
if (this.rawValue == "1") {
this.resolveNode('form1.sfApp6.tableApp6A._Row1').addInstance(1);
this.resolveNode("form1.sfApp6.tableApp6A.Row1[*].ddApp6A1c").rawValue = "Blue bottle";
}
This needs to be something I can specify for each applicable checkbox (each will have a different text string), but I don't know what the final count is going to be (depends on choices made by the user) so I can't delete rows in the table and start over every time. It needs to be additive.
Any suggestions?
Message was edited by: cyndilynnrose