Yes you can.
var oRow1 =
XDocument.DOM.selectSingleNode("/my:myFields/my:group1/my:group2[1]");
var valueFromFirstRow = oRow1.selectSingleNode("my:field1").text;
var oRow2 =
XDocument.DOM.selectSingleNode("/my:myFields/my:group1/my:group2[2]");
var valueFromSecondRow = oRow2.selectSingleNode("my:field1").text;
var oRow3 =
XDocument.DOM.selectSingleNode("/my:myFields/my:group1/my:group2[3]");
var valueFromThirdRow = oRow3.selectSingleNode("my:field1").text;
Let's say your text field is field3:
XDocument.DOM.selectSingleNode("/my:myFields/my:field3").text=valueFromThirdRow
You should put them in one line.
> Hi
> I have a repeating table with n rows with data. Supose I make click in the
> third row, can I get the values of that third row and copy them to text
> controls?
> Thans Kenneth
Kenneth Mora F. - 13 Mar 2007 21:43 GMT
Hi Victor, thank you for your answer, but I got one more question... can I do
the same with C# using the changed event?
Kenneth
> Yes you can.
>
[quoted text clipped - 20 lines]
> > controls?
> > Thans Kenneth