您如何以编程方式将 a 添加p:resetInput
到 a p:commandButton
?
<p:commandButton ...>
...
<p:resetInput target=":edit-form" />
</p:commandButton>
我敢打赌,这门课是org.primefaces.component.resetinput.ResetInputTagHandler
,但是你如何将标签处理程序添加到一个p:commandButton
?(这是正确的课程吗?)
CommandButton button = new CommandButton();
...
button.getChildren().add( new ResetInputTagHandler( ... ) );
- 添加时标签处理程序必须去哪里?
- 构造函数参数是什么
javax.faces.view.facelets.TagConfig
,你从哪里得到它?
(所有这些都假设我选对了课程)
谢谢