You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Takeshi Matsuba (JIRA)" <ji...@apache.org> on 2008/04/10 09:36:04 UTC

[jira] Updated: (WICKET-1511) Control BookmarkablePageLink Parameter's order

     [ https://issues.apache.org/jira/browse/WICKET-1511?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Takeshi Matsuba updated WICKET-1511:
------------------------------------

          Component/s: wicket
    Affects Version/s: 1.3.2

> Control BookmarkablePageLink Parameter's order
> ----------------------------------------------
>
>                 Key: WICKET-1511
>                 URL: https://issues.apache.org/jira/browse/WICKET-1511
>             Project: Wicket
>          Issue Type: Wish
>          Components: wicket
>    Affects Versions: 1.3.2
>            Reporter: Takeshi Matsuba
>
> I want to control parameter's order
> At Application class ,WebPage class is mounted.
> mountBookmarkablePage("/page", Hoo.class);
> At WebPage class, BookmarkablePageLink created.
> PageParameters param = new PageParameters();
> param.put("param1", "string1");
> param.put("param2", "string2");
> BookmarkablePageLink link = new BookmarkablePageLink("link", Hoo.class, param);
> I expect that URL like this.
> /page/param1/string1/param2/string2
> But actual like this.
> /page/param2/string2/param1/string1

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.