如何重置素数向导的步骤?



我使用素数面<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(

<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。

org.primefaces.context.RequestContext
RequestContext context = RequestContext.getCurrentInstance();
context.reset("myForm");

我在提交组件上使用这个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);
    }
}

为了解决这个问题,我必须组合答案,否则每当我单击编辑按钮时,就会显示我在上一版本中停止的步骤。

控制器:

public void edit() {
    PrimeFaces.current().executeScript("PF('wizardOrcamento').loadStep('tabCliente', false)");
}

XHTML:

<p:commandButton action="#{orcamentoController.edit}" [...]>
    <f:setPropertyActionListener [...] />
</p:commandButton>

我希望这能帮助到别人。

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=新ogrenci((;

}

相关内容

  • 没有找到相关文章

最新更新