I see said the blind man...
I've been trying to play with this one for a while... to no avail... I feel like I am missing something here...
My data source structure:
myFields > (repeating section) MeetingMinutes > (repeating Table) AttendeesList
at run time; after adding an additional repeating section to the form I want my users to be able to click on the button and have the prior instance of the repeating section's repeating AttendeesList table be copied over to the newly created one:
How do you specify the prior instance of the repeating section correctly...
this currently errors out when I try it...
CopyTable /tablesrc=preceding-sibling::/my:myFields/my:MeetingMinutes[1]
/rowsrc=my:AttendeesList
/tabledest=/my:myFields/my:MeetingMinutes
/rowdest=my:AttendeesList
/empty=yes
I have also attempted to use this one instead:
Replace /xpathsrc=preceding-sibling::/my:myFields/my:MeetingMinutes[1]/my:AttendeesList
/xpathdest=/my:myFields/my:MeetingMinutes/my:AttendeesList
both error out (I am assuming because of the preceding-sibling issue...
I think I am up against a syntax issue here... any thoughts?