- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hi, you would need to use looping to read the data from your table, something like this:
var tableData = "" //prepare your variable to collect table data
for (i=0; i < Row.instanceManager.count; i++){ //for every row starting from 0 to the last one in your table
tableData = tableData + this.resolveNode("Table.Row[" + i + "].Column1.rawValue + " " + this.resolveNode("Table.Row[" + i + "].Column2.rawValue + " " + this.resolveNode("Table.Row[" + i + "].Column3.rawValue + "\n"; //collect the data from every column and stick it together with " " separator.
}
then include this tableData variable into your emailBody variable.
I should mention that there's probably some (or I should rather say a lot of) mistakes in my syntax above, but at least it will give you an idea to move on. If you'll need further help, you are welcome to share your form with me.
I hope it helps.
Views
Replies
Total Likes