我没有使用 checkboxgroup,因为在我的实际应用程序中,重复控件内还有其他控件。以下是我的示例来源:
<?xml version="1.0" encoding="UTF-8"?>
<xp:view xmlns:xp="http://www.ibm.com/xsp/core">
<xp:repeat id="repeat1" rows="30" var="curRow" indexVar="rowIndex"><xp:this.value><![CDATA[#{javascript:['option 1', 'option 2', 'option 3']}]]></xp:this.value>
<xp:table>
<xp:tr>
<xp:td>
<xp:checkBox text="#{javascript:curRow}"
id="checkBox1">
<xp:eventHandler event="onchange" submit="true"
refreshMode="complete">
</xp:eventHandler></xp:checkBox>
</xp:td>
</xp:tr>
</xp:table></xp:repeat>
<xp:button id="button1" value="Submit" disabled="#{javascript:!getComponent('checkBox1').isChecked()}"></xp:button>
</xp:view>
如果这在 CSJS 中可以实现会更好。
编辑
@stwissel
我默认禁用了该按钮,并且在复选框的客户端 onchange 事件中,我输入了以下代码:
var a=dojo.query('input:checked', 'view:_id1').length;
if(a!=3){
alert('Not yet!');
document.getElementById("#{id:button1}").removeAttribute("disabled");
}else{
alert('Done! All checkboxes are checked!');
document.getElementById("#{id:button1}").setAttribute("disabled", true);
}
如果我使用它们,这些警报似乎工作正常。但该按钮仍处于禁用状态。我已启用 XPage 的所有 3 个 Dojo 选项。将 onchange 设置为部分刷新按钮也没有执行任何操作。我错过了什么?