Hi Rajesh,
That information helps - the problem you are running into is determining
exactly what row you want to return. Do you have the ability to add another
column in the repeating table and place a button in that column? In this
manner, each row would have an associated button and you could easily get
the value of the row you are on by using code like the following:
function CTRL5_5::OnClick(eventObj)
{
var dateVal = eventObj.Source.selectSingleNode("my:field1").text;
XDocument.UI.Alert(dateVal);
}
In this case, my "field1" is the Date Picker control in the first column of
my repeating table.
Let us know if this is a viable solution!
Best Regards,
Scott L. Heim
Microsoft Developer Support
This posting is provided "AS IS" with no warranties, and confers no rights
Martyn Lawson - 11 Aug 2005 17:10 GMT
Hi,
Thanks for this post it saved me a lot of trouble. However, i now have more
trouble. Using the solution below only appears to find the date value from
the first row in the repeating table. How do i find subsequent rows in the
code?
Cheers,
Martyn...
> Hi Rajesh,
>
[quoted text clipped - 21 lines]
>
> This posting is provided "AS IS" with no warranties, and confers no rights