我有下一个问题!
我想从我的支持 bean 动态创建 inputtext,它们将在一个选项卡内,也是动态创建的,它将在执行时构建。
我设法使用input
相应的类动态添加组件。
但是我还没有设法将值标签添加到组件中,这是valueExpresion
一种将值绑定到managedBean
自身的语言。
我找到了一些可以像这样总结的代码。
@ManagedBean
@ViewScoped
public MyManagedBean(){
private TabView tabsi;
HtmlOutputLabel hol = new HtmlOutputLabel();
InputText txt2 = new InputText();
private String value;
/* getter and setters */
public void MyManagedBean{
tabsi = new TabView();
Tab tab1 = new Tab();
tab1.setTitle("Tab1");
Tab tab2 = new Tab();
tab2.setTitle("Tab2");
tabsi.getChildren().add(tab1);
tabsi.getChildren().add(tab2);
hol.setValue("label");
hol.setStyleClass("label");
txt2.setValueExpression("value",
TestController.getExpression("#{myManagedBean.value}"));
txt2.setValue(value);
tab1.getChildren().add(hol);
tab1.getChildren().add(txt2);
}
public static ValueExpression getExpression(String expression) {
FacesContext fc = FacesContext.getCurrentInstance();
ELContext ctx = fc.getELContext();
ExpressionFactory factory = fc.getApplication().getExpressionFactory();
return factory.createValueExpression(ctx, expression, Object.class);
}
public void test1() {
System.out.println(value);
}
}
我成功地构建了组件,但我无法绑定它来设置ValueExpression
. 当我从按钮调用 test1 函数时,它会打印null
如何将值绑定到ManagedBean
???