The problem:
When you add a new row into a repeating table using code the first line remains blank
The solution:
When you add a new row into a repeating table using code the first line remains blank
The solution:
XPathNavigator domNav = MainDataSource.CreateNavigator();
XPathNavigator itemNav = domNav.SelectSingleNode(
"path to reapeting table[1]",
NamespaceManager);
// Delete the row
if (itemNav != null)
itemNav.DeleteSelf();
Thanks for posting these!
ReplyDelete