I've got a mixin that needs access to the page messages. The problem is the mixin ends up on a component that's in a BeanEditForm so I end up with the messages for my AppPropertyEditBlocks page. If I do this
@Inject *private* ComponentResources resources; @BeginRender *void* beginRender() { logger.info("page {}", resources.getPageName()); } The page name returned is AppProperyEditBlocks. After thinking about it I suppose that makes sense but it's not really what I want. Is there a way to get the "Real" page messages?