My InfoPath form contain a Repeating table and button. I want on the Click
event to read (in loop) all the Repeating table rows and values in each row.
How to do it in Javascript?
Hi,
You need to get the node list for eery table.
//Getting the node list
var NodeList = XDocument.DOM.selectNodes("Xpath of your repeating table
parent node");
You can read every node in the NodeList using any loop.
I hope this will help for you.

Signature
k.Ramana Reddy
http://www.GGKtech.com
> My InfoPath form contain a Repeating table and button. I want on the Click
> event to read (in loop) all the Repeating table rows and values in each row.
>
> How to do it in Javascript?