这是我以编程方式创建一个<h:commandButton>
:
private HtmlCommandButton generateButton(String id,String label){
HtmlCommandButton button = (HtmlCommandButton)app.createComponent
(HtmlCommandButton.COMPONENT_TYPE);
button.setId(id);
button.setValue(label);
button.setOnclick("processInput(id)");
return button;
}
单击按钮时,我需要执行该processInput(id)
功能。但是,当我单击该按钮时,什么也没有发生。