yes.
it could be possible to achieve smth similar with shared pages but would require a
modification of the CustomizationManagerService to return a key for customization based on
the window id + user id instead of only the user id
here is the relevant code:
Instance instance = instanceContainer.getDefinition(instanceId);
| if (instance != null)
| {
| // If we are in the context of an existing user we get a customization for
that user
| if (user != null)
| {
| String userId = getUserId(user);
|
| // And if it is in a dashboard context we get the per window
customization
| if (isDashboard(window, user))
| {
| // That's how we manufacture dash board keys
| String dashboardId = window.getId().toString();
|
| //
| instance = instance.getCustomization(dashboardId);
| }
| else
| {
| instance = instance.getCustomization(userId);
| }
| }
| }
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4143005#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...