Add a notification pane after an action
As per the original post.
Hello
I have a table that I am calling directly from a jsp file:
<div id="mvcTable">
<mvc:tableContainer compId="com.ml.util.testUserTable" height="800"/>
</div>
The table automatically brings back a list of users. The users are selected by checkbox and then I have a custom action that allows action on the selected users from the Actions menu.
I'd like to implement an inline message that gives information once the custom action completes. I would normally do this from the jsp file but the custom action is not accessed from there. Any thoughts on how to accomplish this?


