Re: Custom PageMap

2008-08-21 Thread Erik van Oosten
The data is not serializable and is needed in several pages as a part of one transaction - Not serializable: Well that is a hick up. This of course also means that you can not do clustering. I would put the data directly in the HTTP session, or in your own sub class of Wicket's WebSession. I

Re: Custom PageMap

2008-08-21 Thread John Patterson
to retrieve the modified data e.g. from session or pagemap. Or to save its state between requests which would just be a bit inconvenient. -- View this message in context: http://www.nabble.com/Custom-PageMap-tp19073327p19084160.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: Custom PageMap

2008-08-21 Thread Martijn Dashorst
of detachable model to retrieve the modified data e.g. from session or pagemap. Or to save its state between requests which would just be a bit inconvenient. -- View this message in context: http://www.nabble.com/Custom-PageMap-tp19073327p19084160.html Sent from the Wicket - User mailing list

Re: Custom PageMap

2008-08-21 Thread John Patterson
-- View this message in context: http://www.nabble.com/Custom-PageMap-tp19073327p19084492.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: Custom PageMap

2008-08-21 Thread Martijn Dashorst
On Thu, Aug 21, 2008 at 10:22 AM, John Patterson [EMAIL PROTECTED] wrote: I was just considering storing the unit-of-work in the PageMap meta-data. I haven't used that. Session is more in my comfort zone ;) What exactly is the problem with detecting the different browser windows? When does it

Re: Custom PageMap

2008-08-21 Thread Johan Compagner
in 1.3 with the new Disk based store we dont need by default the window detection yes so it is turned off by default. Also the detection is pretty good but not completely solid! It will always be very hard to really detect and play nicely under all circumstances For example if you have 1

Re: Custom PageMap

2008-08-21 Thread John Patterson
if it is not 100 percent reliable. Sometimes that is enough. -- View this message in context: http://www.nabble.com/Custom-PageMap-tp19073327p19086969.html Sent from the Wicket - User mailing list archive at Nabble.com

Custom PageMap

2008-08-20 Thread John Patterson
in context: http://www.nabble.com/Custom-PageMap-tp19073327p19073327.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Custom PageMap

2008-08-20 Thread Erik van Oosten
John, if you keep your conversation data in the component (as a java field), and you work with listeners in that component (e.g. with a Link), that data is available in the listener (e.g. Link's onClick callback method). While coding the component you should not worry about where that data is

Re: Custom PageMap

2008-08-20 Thread John Patterson
for a browser window? John - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/Custom-PageMap-tp19073327p19082028