如何将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
Collection
(List
,ArrayList
等)。你只需要保存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 - 如何通过单击 <p:commandButton> 刷新 <p:graphicImage>?