Re: wicket multi-window app

2012-08-19 Thread Chuck Brinkman
it easier to extend them for your specific needs. On Sat, Aug 18, 2012 at 5:22 AM, Chuck Brinkman wileecanislatr...@gmail.com wrote: Hi, I have a desktop application that I need to move to the web. The desktop app supports multiple windows. I'm told it wouldn't be unusual to have

wicket multi-window app

2012-08-17 Thread Chuck Brinkman
Hi, I have a desktop application that I need to move to the web. The desktop app supports multiple windows. I'm told it wouldn't be unusual to have as many as 30 windows open. All of the windows can be moved, resized, expanded to full screen (fill the original app window) and minimize. The

Re: wicket bench in eclipse

2010-01-26 Thread Chuck Brinkman
I had not heard of wicket bench before reading this email thread. So, I installed it and found that it doesn't play well with 'myeclipse'; not sure where the fault lies. So I just don't use it as a default editor. I do like some of the features. If you just want to switch between java and html

Re: AjaxSelfUpdatingTimerBehavior and session timeout

2010-01-25 Thread Chuck Brinkman
25, 2010 at 1:14 AM, Igor Vaynberg igor.vaynb...@gmail.comwrote: your behavior is always touching the session, so it will never timeout. using this behavior is actually a solution to preventing the session from ever timing out :) -igor On Sun, Jan 24, 2010 at 9:10 PM, Chuck Brinkman chasb1

Re: AjaxSelfUpdatingTimerBehavior and session timeout

2010-01-25 Thread Chuck Brinkman
James, Thanks for the information. I wonder if those using AjaxSelfUpdatingTimerBehavior realize that this prevents session timeout? Chuck On Mon, Jan 25, 2010 at 7:09 AM, James Carman jcar...@carmanconsulting.comwrote: On Mon, Jan 25, 2010 at 4:37 AM, Chuck Brinkman chasb1...@gmail.com

AjaxSelfUpdatingTimerBehavior and session timeout

2010-01-24 Thread Chuck Brinkman
I thought it would be fun to add a 'time to session expiration' display to my pages. So I attempted this using the AjaxSelfUpdatingTimerBehavior. I just took the Clock example and hacked it as follows hsession = request.getHttpServletRequest().getSession(); lastAccessTime =

Re: Cannot get default invisible TextField's ModelObject ?

2010-01-21 Thread Chuck Brinkman
I stepped through the code and found that the convertedInput is null when processing submit. I didn't see anything that looked like an error message from wicket.I look forward to seeing what the wicket developers have to say. I'm just a new wicket user but was interested in this issue. I

Re: Cannot get default invisible TextField's ModelObject ?

2010-01-21 Thread Chuck Brinkman
, Form with multiple row , with something visible and something extensible (default invisible), it is not so rare. If the form is not inside a ListView , it will work. But it just fails if it is inside a ListView. 2010/1/21 Chuck Brinkman chasb1...@gmail.com I stepped through the code

Thanks for wicket: it is awesome and I'm just getting to know it

2010-01-19 Thread Chuck Brinkman
Just wanted to say thanks for wicket. I have a ListMultipleChoice and wanted to update the page based on at least one item selected or no items selected. It took a while for me to locate lmc.add(new AjaxFormComponentUpdatingBehavior(onChange) { @Override protected void

Re: page expired problem issue wicket how resolve fix eofexception peekbyte

2010-01-12 Thread Chuck Brinkman
Hi Martin, I'm new to wicket. Could this have something to do with wicket trying to restore a page from serialized data. If one of the objects on your page can not be serialized you will get an error when wicket tries to restore the page. I think you might see this when the back button is

Re: page expired problem issue wicket how resolve fix eofexception peekbyte

2010-01-12 Thread Chuck Brinkman
happens. Nothing says which is the problematic object, and I can only guess. Do you now a way to trace down where the problem comes from? Thank you! P.S. I'm new to Wicket too :) -Original Message- From: Chuck Brinkman [mailto:chasb1...@gmail.com] Sent: Tuesday, January 12, 2010 1

Re: page expired problem issue wicket how resolve fix eofexception peekbyte

2010-01-12 Thread Chuck Brinkman
parameterized TextField or DropDownChoice for example can cause this? Thanks, -Original Message- From: Chuck Brinkman [mailto:chasb1...@gmail.com] Sent: Tuesday, January 12, 2010 2:13 PM To: users@wicket.apache.org Subject: Re: page expired problem issue wicket how resolve fix eofexception

Re: about org.apache.wicket.extensions.markup.html.form.palette.Palette

2010-01-11 Thread Chuck Brinkman
build a palette that works without javascript but the user experience will probably be poor -igor On Sun, Jan 10, 2010 at 11:41 PM, Chuck Brinkman chasb1...@gmail.com wrote: As you can guess I'm new to wicket. Seems very good so far. I found this Palette component and thought it might

Re: how to change BookmarkablePageLink label

2010-01-10 Thread Chuck Brinkman
, 2010 at 7:46 PM, Chuck Brinkman chasb1...@gmail.com wrote: I want a link that changes based on a users attribute. As the 'linked to' page changes I want the displayed label to reflect the change. I have created two links and am setting visibility based on the users attribute. This works

about org.apache.wicket.extensions.markup.html.form.palette.Palette

2010-01-10 Thread Chuck Brinkman
As you can guess I'm new to wicket. Seems very good so far. I found this Palette component and thought it might work well for me but I need to make some modifications. So I started to dig in. I noticed that the component uses js. I thought wicket was just java and just html. I do realize

how to clear validation error

2010-01-08 Thread Chuck Brinkman
I have a form with a html submit button. In java I wrote my own onSubmit to handle the form processing. In the form I have a firstName field that is required. li First Name: span wicket:id=borderFirstName input type=text

Re: how to clear validation error

2010-01-08 Thread Chuck Brinkman
something? On Fri, Jan 8, 2010 at 3:10 AM, Bodis, Jerome bo...@uni-mainz.de wrote: Shouldn't the FeedbackPanel be a child of the forms panel, instead of the form itself ? (don't know exactly = Your way the feedbackpanel gets submitted too) Jérôme -Original Message- From: Chuck Brinkman

Re: how to clear validation error

2010-01-08 Thread Chuck Brinkman
I created a simple example. Here is my html and java. Once I get a validation error my onSubmit is not called. !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd; html head titleCurrent Page/title link

Re: how to clear validation error

2010-01-08 Thread Chuck Brinkman
Thanks for your help but I don't understand. I even got the source code for http://www.wicket-library.com/wicket-examples/signin/?wicket:bookmarkablePage=:org.apache.wicket.examples.signin.SignInand when I run this in my environment I have the same issue I have with my code. Once I get a

Re: how to clear validation error

2010-01-08 Thread Chuck Brinkman
that it is never reset. I don't see how this could be working for others and not working for me. Any ideas? Is there some setup or configuration I'm missing that causes error messages to be cleared? On Fri, Jan 8, 2010 at 10:51 AM, Chuck Brinkman chasb1...@gmail.com wrote: Thanks for your help but I don't

Re: how to clear validation error

2010-01-08 Thread Chuck Brinkman
The messages are kept in WebSession and WebSession has cleanupFeedbackMessages() but this is never called. Got it. The session I created had a empty cleanupFeedbackMessages() method. Thanks for reading along. On Fri, Jan 8, 2010 at 9:48 PM, Chuck Brinkman chasb1...@gmail.com wrote: I got