Hi,

We have the following Url binding:
@UrlBinding("/article/{authorId}/{id}/{titleUrlified}/{$event}")

And when we direct to the following url:
/web/article////add

It does a ForwardResolution to a form which contains:
            <s:form 
beanclass="org.test.ui.web.action.content.ArticleActionBean" method="POST">
                ...
                <s:submit name="save" />
                <s:submit name="cancel" />
            </s:form>

However the HTML output is as follows:
            <form action="/web/article" method="POST">
                ...
                <input name="save" value="Save" type="submit" />
                <input name="cancel" value="Cancel" type="submit" />
            </form>

But the action ="/web/article" isn't sufficient to hit our Url 
binding... when we click on the "save" or "cancel" buttons???

Am I missing something obvious like in the case of addParameter on 
RedirectResolution?

Anyone?

--Nikolaos



------------------------------------------------------------------------------
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