如何将PrimeFaces p:selectManycheckbox值插入数据库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何将PrimeFaces p:selectManycheckbox值插入数据库相关的知识,希望对你有一定的参考价值。

我是primefaces的新手,我有一个问题是将我的primefaces SelectManyCheckbox值保存到数据库。我正在使用hibernate和mysql。示例代码如下所示

我的xhtml页面代码是:

   <h:outputText value="#{msg['elicense.examinationform.personal.classofcertificates']}"/> 
        <p:selectManyCheckbox id="grid" value="#{examinationFormBean.selectedClass}" layout="grid" columns="1">
            <f:selectItems value="#{examinationFormBean.examinationPart}"var="className" itemLabel="#{className.name}" itemValue="#{className}" />
      </p:selectManyCheckbox>

我的豆是:

  private String[] selectedClass;
  private List<CertificateClass> examinationPart=new ArrayList<CertificateClass>();
  getter()
  setter()

我想保存我的复选框的方法是:

        private void saveExaminationDetails()
          {
             examDetails.setElementaryPrinciples();  //bolean field
             examDetails.setLightinig()
             //no of setter
           }

我无法找到如何在方法上设置选中和未选中的复选框值

答案

看看primefaces展示:http://primefaces-rocks.appspot.com/ui/selectManyCheckbox.jsf

来自examinationFormBean.examinationPart的选定值应在p:selectManyCheckbox属性value中设置,然后您可以在bean方法中使用此选定列表。你的例子应该是:

    <p:selectManyCheckbox id="grid" value="#{examinationFormBean.selectedExaminationParts}" layout="grid" columns="1">
                <f:selectItems value="#{examinationFormBean.examinationParts}" var="className" itemLabel="#{className.name}" itemValue="#{className}" /> 
</p:selectManyCheckbox>

然后你可以在你的selectedExaminationParts中使用saveExaminationDetails()

另一答案

p:selectManyCheckbox选择值是在托管bean上绑定String CollectionListArrayList等)。你只需要保存String上存在的每个Collection

我将举例说明如何做到这一点:

例:

...
@Named(value = "myBean")
@SessionScoped
public class InscricaoBean implements Serializable {
...
private List<String> selectedElemnts = new ArrayList();

//selectedElements get and set
...

在JSF上你有类似的东西:

...
<h:outputText value="#{msg['elicense.examinationform.personal.classofcertificates']}"/> 
        <p:selectManyCheckbox id="grid" value="#{examinationFormBean.selectedElemnts}"...>
            <f:selectItems value="#{examinationFormBean.examinationPart}"var="className"   
            itemLabel="#{className.name}" itemValue="#{className}" />
      </p:selectManyCheckbox>
...

保存方法:

...
private void saveExaminationDetails()
{
   for (String nameAux: selectedElemnts )
   {
       //you save the data here
   }
}
...

以上是关于如何将PrimeFaces p:selectManycheckbox值插入数据库的主要内容,如果未能解决你的问题,请参考以下文章

如何将JavaScript侦听器添加到PrimeFaces Ajax事件

如何将样式应用于 PrimeFaces 数据表?

PRIMEFACES - 如何通过单击 <p:commandButton> 刷新 <p:graphicImage>?

如何将值传递给 ajax 监听器 primefaces

如何从特定的 PrimeFaces p:panelGrid 中删除边框?

如何在 PrimeFaces 3.0 的 p:dataTable 中设置 p:column 的宽度?