我需要知道如何遍历一个primefaces列表p:selectBooleanCheckbox元素并找出它们是否已被检查。我已经找到了如何找到它们,但不知道如何真正得到它们是真是假,我想知道这里是否有人能够帮助解决这个问题。
在尽可能少的代码中,这是我目前正在做的事情,以便将实际元素返回给我,我使用了jquery:checked以及.val()和一些其他方法,但似乎没有工作。我也尝试过筛选控制台中元素对象中的代码,寻找突出的东西,但我也找不到任何东西。任何帮助将不胜感激。
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui">
<body>
<ui:composition template="./../../WEB-INF/template.xhtml">
<ui:define name="content">
<div style="margin-bottom: 350px;">
<p:outputLabel for="coop_sent" value="CO-OP Sent"/>
<p:selectBooleanCheckbox name="coop_sent" styleClass="pc" widgetVar="coop_sent" id="coop_sent" value="#{editProjectsBean.pc.co_opSen}"/>
<script type="text/javascript">
for (var propertyName in PrimeFaces.widgets) {
if (PrimeFaces.widgets[propertyName] instanceof PrimeFaces.widget.SelectBooleanCheckbox){
if (PrimeFaces.widgets[propertyName].widgetVar === 'coop_sent') {
console.log($('PrimeFaces.widgets[propertyName].widgetVar.coop_sent'));
}
}
}
</script>
</div>
</ui:define>
</ui:composition>
</body>
</html>
答案 0 :(得分:2)
关于具体问题,关联的widget对象只有isChecked()
函数。
<p:selectBooleanCheckbox widgetVar="foo" ... />
var checked = PF("foo").isChecked();
另请参阅this blog,了解如何探索widget var和所有可用功能。
至于实际的功能需求,问题有点令人困惑和含糊,因为你似乎对扫描多个复选框组件感兴趣,但jQuery代码片段实际上只对一个感兴趣。我想你实际上是在迭代中多次包含这段代码片段,但你遇到的问题是你最终在<p:selectBooleanCheckbox>
中找到了一个PrimeFaces.widgets
小部件,这让你问这个过于通用的问题。
您应该使用例如后缀小部件var名称作为后缀迭代索引左右。
<p:selectBooleanCheckbox widgetVar="foo_#{index}" ... />
一个(更好的)替代方案就是给它们一个共同的样式类并改为遍历HTML DOM树。有一个隐藏的<input type="checkbox">
,您可以抓住并检查checked
州。
<p:selectBooleanCheckbox ... styleClass="pc" />
if ($(".ui-chkbox.pc input[type=checkbox]:checked").length) {
// At least one is checked.
}
答案 1 :(得分:0)
根据我的尝试,使用此标记:
<p:selectBooleanCheckbox value="#{Bean.checkbox}" styleClass="test"/>
渲染的html是这样的:
<div id="tableForm:j_id868283402_33c0fe0b" class="ui-chkbox ui-widget test">
<div class="ui-helper-hidden-accessible">
<input id="tableForm:j_id868283402_33c0fe0b_input" type="checkbox" name="tableForm:j_id868283402_33c0fe0b_input">
</div>
<div class="ui-chkbox-box ui-widget ui-corner-all ui-state-default ui-state-active">
<span class="ui-chkbox-icon ui-icon ui-c ui-icon-blank"></span>
</div>
</div>
切换复选框只会将ui-icon-blank
替换为ui-icon-check
标记中的<span>
,反之亦然。
我在styleClass="test"
标记中添加了<p:selectBooleanCheckbox>
。我想您可以使用此.test .ui-chkbox-box > span
选择<span>
标记,并确定其类属性中的值是空白还是已检查。