Hi all,
I'm using JSF2 and I have pageA and pageB, where pageA have a table where each row is a record, let's call it entityX.
When a record is selected via commandLink, the details can be viewed in pageB.
So the details are displayed in pageB via MBeanB...
Normally, this approach works well. However, if I choose to open the link in a new tab/window, it will open pageB directly without going through the select method in MBeanA. My question is, how can I change the commandLink to always go through the same workflow, regardless if the target is the same window or a new tab/window.
BTW, I can't use commandButton for some reasons... and my users require multi-tab functionalities.
Thanks!
Ad