传递参数以完成primefaces inputtextarea控制的方法

时间:2014-01-17 18:09:20

标签: jsf primefaces

在JSF& Primefaces Web应用程序,我想为primefaces输入文本区域控件的完整方法传递一个值。我尝试过如下。

JSF文件

 <p:inputTextarea id="txtMicMemoVal"
             value="#{patientReportController.memoEnterVal}"
             style="min-width: 200px;" 
             completeMethod="#{investigationItemValueController.completeValues}" >
      <f:attribute name="ii" value="#{pv.investigationItem}" />
      <f:ajax event="blur"  execute="@this" 
              listener="#{patientReportController.saveMemoVal(pv.id)}" ></f:ajax>
 </p:inputTextarea>

相关的Backing Bean

public List<String> completeValues(String qry) {
    System.out.println("completing values");
    FacesContext context = FacesContext.getCurrentInstance();
    InvestigationItem ii;
    try {
        ii = (InvestigationItem) UIComponent.getCurrentComponent(context).getAttributes().get("ii");
        System.out.println("ii = " + ii);
    } catch (Exception e) {
        ii = null;
        System.out.println("error " + e.getMessage());
    }
    Map m = new HashMap();
    String sql;
    sql = "select v.name from InvestigationItemValue v "
            + "where v.investigationItem=:ii and v.retired=false and"
            + " (upper(v.code) like :s or upper(v.name) like :s) order by v.name";
    m.put("s","'%"+ qry.toUpperCase()+"%'");
    m.put("ii", ii);
    List<String> sls = getFacade().findString(sql, m);
    System.out.println("sls = " + sls);
    return sls;
}

但是当我输入文本输入文本区域时,不会触发支持bean方法。但是,如果我删除f:属性,则会触发支持bean。但我想要这个参数以及功能。

提前感谢指导我来解决这个问题。

1 个答案:

答案 0 :(得分:1)

有趣的问题。 Primefaces限制您在完成方法中只接收String参数,因此我看到的唯一解决方案是在调用完成函数时在服务器端评估表达式。

我想你有一个迭代(ui:repeatp:dataTable),其中每个id与前一个id不同。如果不这样做,您也可以使用它。

这将是要走的路:

<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:p="http://primefaces.org/ui">
<h:head />
<h:body>
    <h:form>
        <ui:repeat var="str" value="#{bean.strings}">
            <p:inputTextarea value="#{bean.value}" style="min-width: 200px;"
                completeMethod="#{bean.complete}" />
        </ui:repeat>
    </h:form>
</h:body>
</html>
@ManagedBean
@RequestScoped
public class Bean {
    public String value;

    public List<String> strings = Arrays.asList("param1", "param2", "param3");

    public List<String> complete(String query) {
        List<String> results = new ArrayList<String>();
        //Here we evaluate the current #{str} value and print it out
        System.out.println(FacesContext
                .getCurrentInstance()
                .getApplication()
                .evaluateExpressionGet(FacesContext.getCurrentInstance(),
                        "#{str}", String.class));
        if (query.equals("PrimeFaces")) {
            results.add("PrimeFaces Rocks!!!");
            results.add("PrimeFaces has 100+ components.");
            results.add("PrimeFaces is lightweight.");
            results.add("PrimeFaces is easy to use.");
            results.add("PrimeFaces is developed with passion!");
        }
        return results;
    }

    public List<String> getStrings() {
        return strings;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }

}

注意,当方法调用执行时,您正在评估#{str}的当前EL结果。根据您写的p:inputTextArea,您将获得不同的评估结果。

另见: