0
我想要是讓所選擇的數/檢查的項目上p:SelectManyCheckbox
:如何獲得AP檢查元素的個數:使用jQuery/JavaScript的selectManyCheckbox
這就是我一直如此遠,但我總是在控制檯上得到1
。
function hasSelectedItems() {
var iLen =document.getElementById("north_form:rvcombo").elements;
console.log(iLen.length);
};
這是我的HTML:
<h:form id="north_form">
<p:selectCheckboxMenu id="rvcombo" widgetVar="rend" label="Rendez-vous" value="#{dyna.selectedstateOptions}" styleClass="combo" onHide="activateCounter();hasSelectedItems();" onShow="deactivateCounter();">
<f:selectItems value="#{dyna.etatExamOptions}" />
<p:ajax event="change" process="@this" partialSubmit="true" global="false"/>
</h:form>
</p:selectCheckboxMenu>
你的HTML請 –