我使用primefaces <p:wizard>
并逐步注册。如果注册成功结束,向导的步骤是第一个,但如果我继续新记录或用户,向导无法添加新记录。我正在更新以前而不是记录/用户。如何在系列中添加新记录?
另一个问题;当它返回到第一步时,它无法重置该字段。我可以这样做吗?
它的提交按钮的代码;
<p:commandButton immediate="true" value="Submit" update="@parent,wiz1,growl,panel"
actionListener="#{OgrenciKayit.save}" oncomplete="wiz.loadStep (wiz.cfg.steps [0], true)" />
如果向导提交,则返回第一步。
oncomplete="wiz.loadStep (wiz.cfg.steps [0], true)"
和actionListener
public void save(ActionEvent actionEvent) {
tx = session.beginTransaction();
session.save(ogrenci);
tx.commit();
FacesMessage msg = new FacesMessage("Başarılı", "Hoşgeldin :"
+ ogrenci.getAd());
FacesContext.getCurrentInstance().addMessage(null, msg);
}
等待你的想法.. (附加信息我使用Jsf 2.2,Tomcat 7.0.50,Hibernate 4.3.5.final,Primefaces,Shiro)
答案 0 :(得分:7)
<p:wizard widgetVar="wiz">
<p:tab id="tab0"> ... </p:tab>
<p:tab id="tab1"> ...
<p:commandButton value="Jump to tabId"
actionListener="#{actionTodo.jump}"
oncomplete="PF('wiz').loadStep('tab0', false)" />
</p:tab>
</p:wizard>
这适用于PrimeFaces 5.0。请注意,您只需要将tabId提供给loadStep方法。我们也应该用"PF('widgetVarId')"
调用PF。
答案 1 :(得分:3)
org.primefaces.context.RequestContext
RequestContext context = RequestContext.getCurrentInstance();
context.reset("myForm");
答案 2 :(得分:1)
我在提交组件上使用了此javascript函数和oncomplete处理程序:
提交组件:
oncomplete="resetWizard(args, PF('wizardWigetVar'));"
Javascript:
/**
* Resets the wizard by loading its first step.
*
* @param args
* @param wizard
*
* @returns
*/
function resetWizard(args, wizard)
{
if (!args.validationFailed)
{
var firstStep = wizard.cfg.steps[0];
if (wizard.currentStep != firstStep)
wizard.loadStep(firstStep, true);
}
}
答案 3 :(得分:0)
为了解决该问题,我必须合并答案,否则,每当单击“编辑”按钮时,都会显示我在上一版中停止的步骤。
控制器:
public void edit() {
PrimeFaces.current().executeScript("PF('wizardOrcamento').loadStep('tabCliente', false)");
}
XHTML:
<p:commandButton action="#{orcamentoController.edit}" [...]>
<f:setPropertyActionListener [...] />
</p:commandButton>
我希望这可以帮助某人。
答案 4 :(得分:-2)
public void save(ActionEvent actionEvent) {
tx = session.beginTransaction();
session.save(ogrenci);
tx.commit();
FacesMessage msg = new FacesMessage("Başarılı", "Hoşgeldin :"
+ ogrenci.getAd());
FacesContext.getCurrentInstance().addMessage(null, msg);
ogrenci = new Ogrenci();
}