I have two questions - a minor one then my main one. Minor question -------------- Am I correct that the calls
PageParameters params = ... MyPage pgNext = new MyPage(PageParameters params); setResponsePage(pgNext); result in the creation of a session-relative page, whereas the calls PageParameters params = ... setResponsePage(MyPage.class, params); result in the creation of a bookmarkable page? Main question ------------- My WebPage has one Form, the model of which is wrapped in a LoadableDetachableModel (LDM). This LDM nulls most, but not all, of its data. If this page is called into being in a bookmarkable way, would I be correct to think that none of this page's LDM's data would be stored in the user's session (in a PageMap or otherwise)? Regards, Ian Marshall -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Models-in-a-bookmarkable-page-tp3444176p3444176.html Sent from the Users forum mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
