0

我在其他重复部分控件中嵌套重复部分控件时遇到问题。

想象一下,我正在枚举数据中心环境中的 vm 主机中的服务器

Datacenter1
    Environment1
        VMHost1
           Server1
           Server2
        VMHost2
           Server3
           Server4
    Environment2
        VMHost3
           Server5
...

我的文档需要有许多重复的分层部分。
这是文档的基本结构:

Datacenter1 Header

    Some description text

    ----- Environment1 Table ---------
    | Header1  | Header 2 | Header 3 |
    |--------------------------------|
    | VMHost1  | Server1  | ........ |
    |          | Server2  | ........ |
    |--------------------------------|
    | VMHost2  | Server3  | ........ |
    |          | Server4  | ........ |
    ----------------------------------

    ----- Environment2 Table ---------
    | Header1  | Header 2 | Header 3 |
    |--------------------------------|
    | VMHost3  | Server5  | ........ |
    ----------------------------------

Datacenter2 Header

    Some description text

    ----- Environment3 Table ---------
    | Header1  | Header 2 | Header 3 |
    |--------------------------------|
    | VMHost1  | Server1  | ........ |
    |          | Server2  | ........ |
    |--------------------------------|
    | VMHost2  | Server3  | ........ |
    |          | Server4  | ........ |
    ----------------------------------

如您所见,我需要一些嵌套的内容控件。

但我得到了非常时髦的行为。就像我添加一个嵌套的重复部分一样,它有时会删除它外部的重复控件,该控件应该包裹在表格行周围。

其他时候,我认为我已经正确设置了所有内容,然后为了测试它,我单击 [+] 以重复整个数据中心部分,但它不仅仅重复该部分,或者有时重复同一部分中的其他部分.

我没有使用分组功能 - 并且不确定我是否应该或如果我这样做会有什么帮助。

希望这不是实现中的错误,我只是做错了..但我担心这种“高级”场景不被支持。

最终,我将在 UI 中锁定所有这些控件,并将使用通过 Open XML SDK 注入的自定义 XML 部件来填充它。我在文档中有许多其他部分 - 包括重复部分 - 工作正常,但它们的重复部分没有嵌套。

我已经获得了应该支持嵌套的 XML 结构,并且当我向下映射这些控件时一切都很好,直到我修改 XML 以将更多子节点添加到各个节点以测试重复部分。在某些情况下,它删除了整个部分,在其他情况下,它重复嵌套的子节点作为父节点,重复整个表。

我想问题是:
1. 如果你已经成功地嵌套了重复部分,怎么做?
2. 如果你遇到了这些古怪的行为,你是如何解决的?
3. 关于内容控件集、重复部分的分组功能的目的是什么,我应该使用它们来完成此操作吗?

4

2 回答 2

1

我设法让这个工作。
这是一个示例文档: http: //1drv.ms/1nkMGVF
我使用这个工具来帮助命名、绑定(AutoMap!)和导航内容控件。

看起来问题是两件事的结合:

  1. 不兼容的 XML 结构
  2. 基于表格的重复部分中混合基于段落的重复部分


不兼容的 XML
为了解决重复表行中单元格中嵌套段落重复的问题,我用外部元素包装重复元素:

<relativeRoot>
    <nonRepeatingNode/>
    <table>
        <repeatingTableRow>
            <text1/>
            <text2/>
        </repeatingTableRow>
        <repeatingTableRow>
            <text1/>
            <text2/>
        </repeatingTableRow>
    </table>
</relativeRoot>

但这在通过 XML 添加重复元素或使用内置 Word 功能添加重复部分时会导致问题。所以我将其更改为以下(已删除<table>):

<relativeRoot>
    <nonRepeatingNode/>
    <repeatingTableRow>
        <text1/>
        <text2/>
    </repeatingTableRow>
    <repeatingTableRow>
        <text1/>
        <text2/>
    </repeatingTableRow>
</relativeRoot>


混合重复部分

重复部分通常可以换行段落文本,但当该重复部分位于表格单元格内时,它会出现,其行被重复部分包裹,它会导致渲染嵌套重复出现问题。

这是之前层次结构的表示:

repeating section control
^-> table
    ^-> row (fixed, non-repeating)
        ^-> column1a: plain text control
        ^-> column2a: table
                     ^-> repeating section control
                         ^-> row
                             ^-> column1b: plain text control
                             ^-> column2b: repeating section control
                                           ^--> plain text control

        ^-> column3a: repeating section control
                     ^-> plain text control


- the repeats within column3a work
- the repeats of row column1b/2b do not

这是之后:

repeating section control
^-> table
    ^-> row (fixed, non-repeating)
        ^-> column1a: plain text control
        ^-> column2a: table
                      ^-> repeating section control
                          ^-> row
                              ^-> column1b: plain text control
                              ^-> column2b: table 
                                            ^-> repeating section control
                                                ^-> row                                              
                                                    ^--> column1c: plain text control

        ^-> column3a: repeating section control
                     ^-> plain text control


可能有其他方法可以使这项工作(检查此处),但无论出于何种原因,我都无法使其工作。

于 2014-10-14T16:55:42.177 回答
0

我用 Word 2013 对此进行了测试,它对我有用。

起初,我在整个表格周围放置了一个重复部分内容控件 (RSCC),然后在一个表格行周围放置了另一个 RSCC(不是最后一个!)。最后,我将纯文本内容控件放入表格单元格中。

于 2016-08-25T10:13:40.247 回答