Hi Guys,
I have repeating table which contain series of task (Please refer to attachment).
What i have done:
When the user clicked the Complete button, The Date completed will populate with today's date.
public void BtnComplete_Clicked(object sender, ClickedEventArgs e)
{
// Write your code here.
XPathNavigator domNav = MainDataSource.CreateNavigator();
if(domNav.SelectSingleNode("/my:myFields/my:ApprovalsFolder/my:ApplicationStatus/my:StatusCompletedDate", NamespaceManager).Value != null)
{
}
}
What i am trying to achieve:
only enable first row only when form load. If the user clicked the complete button in the first row then the second row is enabled.
Please advise, Thank you