0

我没有使用 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 设置为部分刷新按钮也没有执行任何操作。我错过了什么?

4

1 回答 1

1

在 CSJS 中解决这个问题,每次单击复选框时的往返并不是很高效。这里的诀窍是:给复选框一个类,这样您就可以使用dojo.query来处理所有这些复选框,然后遍历它们。在第一个错误时,您返回。如果您没有返回,则重置禁用的值。应该比往返快得多

于 2013-05-09T10:32:33.627 回答