Re: Problem with Crypted URL

2008-11-28 Thread Marcus Mattila
We are also getting this when sessions expire. No big deal but would still like a fix. Will it be fixed in the 1.3.x branch also? Pls make it :) br, Marcus On Mon, Nov 24, 2008 at 7:30 PM, francisco treacy [EMAIL PROTECTED] wrote: johan, i'm not sure i understand correctly. you mean that it

Re: How to add cookies to WicketTester?

2008-11-28 Thread Marcus Mattila
Please note this bug in WicketTester cookie handling https://issues.apache.org/jira/browse/WICKET-1886 -Marcus On Fri, Nov 28, 2008 at 2:30 PM, Vit Rozkovec [EMAIL PROTECTED] wrote: Hallo, I think it should work with one of those methods: public final Page startPage(final ITestPageSource

Re: Why don't I get onSubmit() for my form?

2008-11-11 Thread Marcus Mattila
Any tips for me? I feel like I'm missing something really simple... Override the Form's onError() -method, to check whether there's a validation error you haven't noticed. -Marcus - To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: when to save shopping basket for registered and anonymous users?

2008-06-12 Thread Marcus Mattila
technical occurrence such as .detach? If you want, you can always persist changes for a registered user and on the other hand never persist them for anonymous users. Whenever the anonymous user becomes registered - the basket is persisted. ** Martin 2008/6/11 Marcus Mattila [EMAIL PROTECTED]: Hi

when to save shopping basket for registered and anonymous users?

2008-06-11 Thread Marcus Mattila
Hi! We are developing a shopping basket in our Wicket application. We would like to persist the basket as late as possible, and for anonymous users only if they sign up to the service. We don't want to save lots of anonymous Baskets to the database. We use Wicket 1.3.3 and Databinder (as a

Re: AutoCompleteTextField scrolls entire page

2008-06-08 Thread Marcus Mattila
Hi, we have reproduced the same problem with AutocompleteTextfield. We use 1.3-SNAPSHOT. Did you get it solved? Code and css we use is same as in Wicket Examples: http://www.wicket-library.com/wicket-examples/ajax/?wicket:interface=sources:0:filespanel:file:2:link::ILinkListener:: br, Marcus

Re: users, please give us your opinion: what is your take on generics with Wicket

2008-06-03 Thread Marcus Mattila
generics for formcomponents do not make sense, most of the time they can figure out the type by inspecting their model. further, generics did not get rid of the need to specify the type as a constructor argument: new TextFieldInteger(num, Integer.class) Agreed. +1 for NOT generifying

Models loosing their values problem with IE6/7 and Wicket 1.3.0-RC1

2008-03-16 Thread Marcus Mattila
Hi, strange problem: when changing language in my app which is a Form done with Wicket 1.3.0-RC1, the Models loose their values when the browser is IE6/7. With Firefox everything is ok. Component streetaddress = get(customerInfo+:contactInfo+:streetaddress); String modelAsString =

Ajax problem with RequiredTextField in IE6/7

2008-03-16 Thread Marcus Mattila
at 4:35 PM, Martijn Dashorst [EMAIL PROTECTED] wrote: Update first, ask questions later. There are roughly 300 issues solved between your version and 1.3.2. Martijn On 3/16/08, Marcus Mattila [EMAIL PROTECTED] wrote: Hi, strange problem: when changing language in my app which