Hi,
I don't believe you can achieve what you want with global binding, this has the effect of assigning all fields with the same name the same value and as the fields in the second row will have the same names as fields in the first row, they will also have the same values.
One way of achieving what you want it to have a calculate event script in the second table that copies values over, something like;
var rows = xfa.resolveNodes("Table1.Row1[*]");
_Row1.setInstances(0); // make sure min count is zero
for (var i = 0; i < Table1._Row1.count; i++) {
var sourceRow = rows.item(i);
var sourceFields = sourceRow.resolveNodes("#field[*]");
var destinationRow = _Row1.addInstance();
for (var j = 0; j < sourceFields.length; j++) {
var sourceField = sourceFields.item(j);
var destinationField = destinationRow.resolveNode(sourceField.name + "[" + sourceField.index + "]");
if (destinationField !== null) {
destinationField.rawValue = sourceField.rawValue;
}
}
}
You will have to change the names for the first table (Table1 in this code) and the row in the first table (Row1), here is a sample form https://sites.google.com/site/livecycledesignercookbooks/home/CopyTable.pdf?attredirects=0&d=1
Regards
Bruce