I got the event handlers triggering now... not that I am comfortable with what 
thr runtime is doing under the hood

I wanted to restate my issue

During EDIT with this EDIT Page

on OK or CANCEL

my browser URL looks like
http://localhost:8080/psi/metatag/1

but strangely what is on the browsers display is and this is confirmed by the 
bottom status bar of th ebrowser

http://localhost:8080/psi/edit/photogroupphoto

displaying some photo of a different blob business object

So the OK and CANCEL action handlers are here

        @Log
        @CustomCommitAfter
        @OnEvent(EventConstants.SUCCESS)
        Link success()
        {
                persistenceService.save(bean);
                return !continueEditing ? back() : null;
        }

        @OnEvent("cancel")
        Link back()
        {
                return 
pageRenderLinkSource.createPageRenderLinkWithContext(Show.class, beanType, 
bean);
        }

if I put List.class in place of Show.class, it finds its way back to the List 
page

My problem being, the edit page is unable to find its way back to the Show page

I dont know why the URL's are messed up for the content and the browser URL 
address, 
the URL address appears to be in order but like I said something is going on 
under the hood displaying bogus content


Not sure what to think

Any tips are appreciated

                                          

Reply via email to