gshegosh,

Much Appreciated. The following was 99% there:

return (new RedirectResolution(ArticleActionBean.class, 
"view").addParameter("authorId", 
this.article.getAuthorId()).addParameter("id", 
this.article.getId()).addParameter("titleUrlified", 
this.article.getTitleUrlified());

As it resulted in:
/web/article/245b57557f0d3c57/2/magic-or-science?view=

This appears to be a bug as it should have injected the event in the 
clean Url. No?

Whereas the following worked perfectly:

return (new 
RedirectResolution(ArticleActionBean.class).addParameter("authorId", 
this.article.getAuthorId()).addParameter("id", 
this.article.getId()).addParameter("titleUrlified", 
this.article.getTitleUrlified()).addParameter("_eventName", "view"));

Correctly resulting in:
/web/article/245b57557f0d3c57/2/magic-or-science/view

--Nikolaos









gshegosh wrote:
> Have you tried
>
> new RedirectResolution(ArticleActionBean.class, 
> "view").addParameter("authorId", 42).addParameter("id", 43)
>
> ? :-)
>
>
>   


------------------------------------------------------------------------------
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today
http://p.sf.net/sfu/msIE9-sfdev2dev
_______________________________________________
Stripes-users mailing list
Stripes-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to