[
https://issues.apache.org/jira/browse/WICKET-1511?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Igor Vaynberg updated WICKET-1511:
----------------------------------
Fix Version/s: 1.5-M1
in 1.5 we have infrstructure in place that keeps track of url parameter order
so we can implement this there
> 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
> Fix For: 1.5-M1
>
>
> 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.