Infopath重复表 - 从当前行获取字段

时间:2012-07-13 20:14:43

标签: c# xml xpath infopath

我在Infopath有一张重复的表。在字段更改事件中,我需要对相关行中的数据执行计算。我如何在代码隐藏(C#)和Xpath中解决这个问题?

例如,我有一个开始日期和结束日期。在代码隐藏中,进行计算以计算跨度中的小时数。这适用于第一行,但不适用于后续行。我知道我编写它的方式到目前为止只适用于第一行,但是如何让它适用于所有行?

1 个答案:

答案 0 :(得分:2)

您可以使用XPathNodeIterator。例如: 您可以使用XPathNodeIterator。例如:

        XPathNodeIterator nodes = MainDataSource.CreateNavigator().Select("/my:myFields/my:group1/my:group2", this.NamespaceManager);

        string field1 = string.Empty;
        string field2 = string.Empty;
        string field3 = string.Empty;

        foreach (XPathNavigator node in nodes)
        {
            field1 = node.SelectSingleNode("my:field1", this.NamespaceManager).Value;
            field2 = node.SelectSingleNode("my:field2", this.NamespaceManager).Value;
            field3 = node.SelectSingleNode("my:field3", this.NamespaceManager).Value;
        }

这将获取每个字段的值并将字符串变量设置为该值。如果你想连接所有值,你需要修改它 - 你可以做一些非常简单的事情:

field1 = node.SelectSingleNode("my:field1", this.NamespaceManager).Value + " " + field1;