0

这可能是一个简单的问题,但我做不到 6 个小时。

我想将复选框添加到 Backoffice > Catalog > Products Properties 选项卡。我的问题是

  1. 如何添加复选框
  2. 如果它应该被写入jsp文件,在哪里寻找那个文件。
  3. 复选框的功能写入什么文件

在此处输入图像描述

4

1 回答 1

0

您需要将其添加到 backoffice-config.xml 文件中。您需要覆盖属性选项卡并在此处添加模型属性。如果您的属性类型是布尔值,zk 框架会自动出现该属性的复选框。如果它是另一种类型,则需要为此属性添加自定义编辑器。

例如下面的示例 ovveride 选项卡。

<context type="Customer" merge-by="type" component="editor-area">
    <editorArea:editorArea>
        <editorArea:tab name="hmc.tab.common" position="1">
            <editorArea:section name="hmc.properties">
                <editorArea:attribute qualifier="myAttribute" />
            </editorArea:section>
        </editorArea:tab>
    </editorArea:editorArea>
</context>

默认情况下,您还可以在 Addmistration 选项卡未绑定部分中查看新属性。

于 2017-04-14T14:30:59.727 回答