web-dev-qa-db-ja.com

同じページのダイアログにパラメータを渡す

ダイアログにネストされたフォームと他のフォームを含むページがあります。メインフォームでボタンがクリックされたときにパラメータをダイアログに渡す必要があります

<h:form>
<p:dataTable var="form" value="#{myBean.formList}">
     <p:commandButton id="selectProduct" 
                            update="selectProductForm" oncomplete="selectProductDlg.show()" 
                            image="ui-icon-" > 
                            <f:param name="formId" value="#{form.id}" />
                </p:commandButton>
</p:dataTable>
</h:form>

<p:dialog>
...<h:form>
<p:commandButton action="#{myBean.setSelected}"
                    update="main_form"
                    oncomplete="if(#{myBean.errorText == 'SUCCESS'}){ selectProductDlg.hide();}"
                    value="Sec">
                </p:commandButton>


コードでmyBeanにformIdが表示されません:

if (form == null) {
            HttpServletRequest req = (HttpServletRequest) FacesContext
                    .getCurrentInstance().getExternalContext().getRequest();
            if(req.getParameter("formId") != null) {
                formId = Long.valueOf(req.getParameter("formId"));
            }
            if (formId != null && !"".equals(formId)) {
                form = formService.findById(formId);
            } 
        }

どこが間違っているのか

14
merveotesi

Beanがビュースコープ内にあると仮定して、データテーブル列のコマンドボタンのアクションメソッドでBeanプロパティディレクトリとして設定するだけです。

<h:form>
  <p:dataTable var="form" value="#{myBean.formList}">
    <p:column>
      <p:commandButton id="selectProduct" 
                       action="#{myBean.setCurrentForm(form)}"
                       update="selectProductForm" oncomplete="selectProductDlg.show()" 
                       image="ui-icon-"> 
      </p:commandButton>
    </p:column>
  </p:dataTable>
</h:form>

<p:dialog>
  <h:form>
    <p:commandButton action="#{myBean.setSelected}"
                     update="main_form"
                     oncomplete="if(#{myBean.errorText == 'SUCCESS'}){ selectProductDlg.hide();}"
                     value="Sec">
    </p:commandButton>
  </h:form>
</p:dialog>

ダイアログにキャンセルボタンがある場合は、そのアクションメソッドでnullに設定する必要があります。

POSTリクエストで生のHTTPリクエストパラメータをいじる必要はありません。<f:param>は、可能な限りGETリクエストでのみ使用する必要があります(例:<h:link><h:button>など)。

24
BalusC