Control BookmarkablePageLink Parameter's order
----------------------------------------------
Key: WICKET-1511
URL: https://issues.apache.org/jira/browse/WICKET-1511
Project: Wicket
Issue Type: Wish
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.