2017-04-14 81 views
0

這可能是一個簡單的問題,但我不能做6個小時。如何添加複選框hybirs

我想將複選框添加到後臺>目錄>產品屬性選項卡。 我的問題是

  1. 如何添加複選框
  2. 如果要寫進JSP文件到哪裏尋找該文件。
  3. 什麼文件寫的複選框

enter image description here

回答

0

你需要將其添加在後臺-config.xml中的文件的功能。您需要重寫屬性選項卡並在此處添加模型屬性。如果你的屬性類型是boolean,zk framework會自動出現這個屬性的複選框。如果是另一種類型,則需要爲該屬性添加自定義編輯器。

例如以下示例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> 

默認情況下,您還可以在「添加管理」選項卡未綁定部分中查看新屬性。