Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在调用动作时获取事件。我需要方法 bean.myAction 中的按钮 ID。请帮忙。
<ce:button partialSubmit="true" action="#{bean.myAction}"/>
提前致谢。
我不认为这会为你做。此方法不接收触发操作的组件的 ID。我认为您需要为此按钮调用 ActionListener 方法 - ADF 会将此方法添加到您的支持 bean,并且此方法接受 ActionEvent 的参数,您可以从事件对象中获取使用 getComponent() 触发事件的组件 ID . 您可以从那里调用您的操作 myMethod 或将其添加为操作方法。