如何将复选框添加到hybris
How to add checkbox to hybris
这可能是个简单的问题,但我不能做 6 个小时。
我想将复选框添加到 Backoffice > Catalog > Products Properties 选项卡。
我的问题是
- 如何添加复选框
- 如果应该写入 jsp 文件,去哪里寻找那个文件。
- what file to write functionality of the checkbox
您需要将其添加到后台-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>
默认情况下,您还可以在添加选项卡未绑定部分查看新属性。
这可能是个简单的问题,但我不能做 6 个小时。
我想将复选框添加到 Backoffice > Catalog > Products Properties 选项卡。 我的问题是
- 如何添加复选框
- 如果应该写入 jsp 文件,去哪里寻找那个文件。
- what file to write functionality of the checkbox
您需要将其添加到后台-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>
默认情况下,您还可以在添加选项卡未绑定部分查看新属性。