CompoundPropertyModel

2009-11-14 Thread Николай Кучумов
Hello. I have a "Person" class, describing a person, which has a member "credentials" of type "Credentials" (username/password). I tried to make a registration page in this way: Page { super(); Person person = [create a person with empty credentials]; Form form = new Form("form", new

Re: CompoundPropertyModel

2009-11-14 Thread Николай Кучумов
n - which means it either didn't make it > there or the session is somehow gone. > > -- > Jeremy Thomerson > http://www.wickettraining.com > > > > On Sat, Nov 14, 2009 at 7:26 AM, Николай Кучумов >wrote: > > > Hello. > > I have a "Person&qu

Re: CompoundPropertyModel

2009-11-20 Thread Николай Кучумов
> serialized) is b/c it didn't get that far yet, so problems are elsewhere. > > Hope this helps, > - Alex. > > -Original Message- > From: Николай Кучумов [mailto:kuchum...@gmail.com] > Sent: Saturday, November 14, 2009 9:33 AM > To: users@wicket.apache.org

Hide feedback when there are no messages

2009-11-28 Thread Николай Кучумов
Hello. I'm currently developing a sign up form using Wicket. I've stylized the error feedback panel to make it look red, and now i see this red panel even when there are no messages at all. Can you advice me something to make the feedback panel div invisible when there are no messages? *You can get

Re: CompoundPropertyModel

2009-11-28 Thread Николай Кучумов
Today I've finally worked out the cause of the error - that was the NginX caching server which was somehow caching data. It was set up incorrectly. Today I've corrected my NginX configuration files, and everything works now, even with the bookmarks. 2009/11/20 Николай Кучумов >

Re: Hide feedback when there are no messages

2009-11-28 Thread Николай Кучумов
Hello, Major. It looks like this: and the CSS is: .error { width: auto; margin-left: 25%; margin-right: 25%; border: 1px solid #fc908c; background-image: url(

Re: Hide feedback when there are no messages

2009-11-28 Thread Николай Кучумов
fult, of course it will show > the div. ;) > Delete from your markup the class="error", then see when your validation > fails, what css class will be generated via wicket, and override that > from your css file. > > Peter > > 2009-11-28 20:46 keltezé

Re: Hide feedback when there are no messages

2009-11-28 Thread Николай Кучумов
dth: 480px; >margin-top: 15px; >position: relative; >right: -200px; > } > > for example. Like this you can use FBP both for validations and simple > messaging with user (via info(), error() and warning() functions of page). > > Peter > > 2009-11-28 2

Re: CompoundPropertyModel

2009-11-29 Thread Николай Кучумов
ccumulates JSESSIONID cookies - I've seen even three of them simultaneously. After I delete these stale JSESSIONID cookies, I'm able to submit the form again. I'm not sure, what a decision could be. Maybe it is a well known bug. Just reporting it to you. 2009/11/28 Николай Кучумов &g

Re: CompoundPropertyModel

2009-11-29 Thread Николай Кучумов
To come up with a decision, I can propose you to catch this special exception, then count all JSESSIONID cookies, and, if there are several of them, delete the stale JSESSIONID cookies, and then try to run the form submission cycle again programmaticaly. 2009/11/29 Николай Кучумов > Also I