jsf高手请帮帮我
michalcl
2010-07-28
我用了一个pangrid利用网上介绍的技术动态创建了一下 inputtext,可inputtext只能显示值,却不能回写到变量中,请高手支持一下。
public HtmlPanelGrid getEdtGrid() { FacesContext context = FacesContext.getCurrentInstance(); ELContext elContext = context.getELContext(); ExpressionFactory ef = context.getApplication().getExpressionFactory(); List list = grid.getChildren();// 取得表格的列表 if (list!=null) list.clear(); { HtmlInputText htmlInputText = new HtmlInputText(); ValueExpression me = ef.createValueExpression(elContext,"#{jsfEstimates.a}", String.class); htmlInputText.setValueExpression("value", me); htmlInputText.setId("a"); list.add(htmlInputText); } |
|
jerrycai
2010-08-10
你faces-config里面jsfEstimates配置了吗?
|
|
tmj_159
2010-08-12
估计是没有放到FORM里面,检查下看看
|