Basically... on SUBMIT all i want the BroadCastAdd.tml to do is fabricate and 
send the broadcast (which it does successfully).

but I want it to go back to show the broadcast entity or the list of broadcasts 
using the grid.

What I see on the screen is ... a jquery carousel showing all the images under 
my docroot. And the source i already posted.

This is fairly consistent throughout 80% of my custom ADD/EDIT pages. Although 
it doesnt happen for that few... i beat the codebase hard with fine tooth comb 
review.

Something is happening internally and thats why i thought maybe it was the 
memory or stack thing but I have allocated enough memory...

Also I deleted/repopulated my local repo and rebuilt everything clean... and it 
persists.

Here is the success routine for BroadCastAdd.java

    @Log
    @CommitAfter
    @OnEvent(EventConstants.SUCCESS)
    Link success()
    {
        try
        {
            sendBroadcast();
        } catch (Exception ex)
        {
            System.out.println(ex);
        }

        persistenceService.save(bean);
        
alertManager.info(messages.getFormatter(Utils.ADDED_MESSAGE).format(bean));
        return !continueAdding ? 
pageRenderLinkSource.createPageRenderLinkWithContext(Show.class, beanType, bean)
                : null;
    }
                                          

Reply via email to