我想知道用户是否单击了特定的commandButton,如果是,则执行一些操作:
xhtml:
ThemeDisplay themeDisplay = ( ThemeDisplay ) request.getAttribute( THEME_DISPLAY );
long userId = themeDisplay.getRealUserId();
后备豆方法:
<h:form id="myFormID">
<p:commandButton id="myButtonID" actionListener="#{myController.save}" ... >
...
有人知道我可以使用哪种方法来知道是否单击了CommandButton吗?