我試圖禁用Dojo組合框的客戶端驗證失敗。我添加了dojo屬性「required」並將其設置爲false,但這仍然無效。我確實希望啓用服務器端驗證,這就是爲什麼我設置required =「true」。任何人都可以看到需要對以下代碼進行哪些更改?XPage - 禁用Dojo組合框的客戶端驗證
<xe:djComboBox id="djComboBox1" required="true" disableClientSideValidation="true">
<xe:this.dojoAttributes>
<xp:dojoAttribute name="required" value="false">
</xp:dojoAttribute>
</xe:this.dojoAttributes>
<xp:selectItem itemLabel="" />
<xp:selectItem itemLabel="Apples" />
<xp:selectItem itemLabel="Oranges" />
<xp:selectItem itemLabel="Pears" />
<xp:selectItem itemLabel="Bananas" />
<xp:selectItem itemLabel="Plums" />
</xe:djComboBox>
什麼是它綁定到? –